Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions src/SB/Core/x/xFont.h
Original file line number Diff line number Diff line change
Expand Up @@ -217,6 +217,7 @@ struct xtextbox
layout& temp_layout(bool cache) const;
void render(bool cache) const;
void render(layout& l, S32 begin_jot, S32 end_jot) const;
F32 yextent(bool cache) const;
F32 yextent(F32 max, S32& size, bool cache) const;
F32 yextent(F32 max, S32& size, const layout& l, S32 begin_jot,
S32 end_jot) const;
Expand Down
2 changes: 2 additions & 0 deletions src/SB/Core/x/xMath2.h
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,9 @@ template <class T> struct basic_rect
const static basic_rect m_Unit;

basic_rect& assign(T x, T y, T w, T h);
basic_rect& contract(T s);
basic_rect& contract(T x, T y, T w, T h);
basic_rect& expand(T s);
basic_rect& expand(T x, T y, T w, T h);
basic_rect& move(T x, T y);
basic_rect& scale(T s);
Expand Down
1 change: 1 addition & 0 deletions src/SB/Core/x/xMemMgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -86,6 +86,7 @@ struct xMemPool

extern U32 gActiveHeap;

void xMemDebug_SoakLog(const char*);
void xMemInit();
void xMemExit();
void xMemInitHeap(xMemHeap_tag* heap, U32 base, U32 size, U32 flags);
Expand Down
1 change: 1 addition & 0 deletions src/SB/Game/zCutsceneMgr.h
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,7 @@ RpAtomic* HackAlphaCB(RpAtomic* atomic, void* data);
void zCutSceneNamesTable_clearAll();
void zCutsceneMgrPlayStart(zCutsceneMgr* t);
S32 zCutsceneMgrEventCB(xBase*, xBase* to, U32 toEvent, const F32*, xBase*);
void zCutsceneMgrFinishLoad(xBase* to);

void zCutsceneMgrKillFX(zCutsceneMgr* t);
void zCutsceneMgrUpdateFX(zCutsceneMgr* t);
Expand Down
1 change: 1 addition & 0 deletions src/SB/Game/zEntPlayer.h
Original file line number Diff line number Diff line change
Expand Up @@ -407,6 +407,7 @@ xAnimTable* zPatrick_AnimTable();
xAnimTable* zEntPlayer_AnimTable();
xAnimTable* zSpongeBobTongue_AnimTable();

void zEntPlayer_Init(xEnt* ent, xEntAsset* asset);
void zEntPlayerExit(xEnt*);
void zEntPlayerPreReset();
void zEntPlayerReset(xEnt* ent);
Expand Down
Loading