Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
21 commits
Select commit Hold shift + click to select a range
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
5 changes: 5 additions & 0 deletions src/SB/Core/gc/iFX.cpp
Original file line number Diff line number Diff line change
@@ -1,3 +1,8 @@
#include "iFX.h"

#include <types.h>

RxPipeline* iFXanimUVCreatePipe()
{
return NULL;
}
7 changes: 6 additions & 1 deletion src/SB/Core/gc/iFX.h
Original file line number Diff line number Diff line change
@@ -1,4 +1,9 @@
#ifndef IFX_H
#define IFX_H

#endif
#include "types.h"
#include <rwcore.h>

RxPipeline* iFXanimUVCreatePipe();

#endif
2 changes: 1 addition & 1 deletion src/SB/Core/x/xBehaveMgr.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@ void xBehaveMgr::Startup(S32 size, S32 tmpAlloc)
{
goalFactory = new ('BMGR', NULL) xFactory(tmpAlloc);

RegBuiltIn();
g_behavmgr->RegBuiltIn();
XOrdInit(&psylist, size, 0);
psypool = (xPsyche*)xMemAlloc(gActiveHeap, size * 0x68, 0);
memset(psypool, 0, size * 0x68);
Expand Down
Loading