diff options
author | aap <aap@papnet.eu> | 2020-11-25 22:49:50 +0100 |
---|---|---|
committer | aap <aap@papnet.eu> | 2020-11-25 22:49:50 +0100 |
commit | 4ddc35634160da5779c46ab63a5b3d351af50b83 (patch) | |
tree | 9e38a65296bb049d0292948c135ef8f3a939df9b /src/skel/glfw | |
parent | 88baa9ce5f22a788a1033040040185001a87f922 (diff) |
memory heap starting to work
Diffstat (limited to 'src/skel/glfw')
-rw-r--r-- | src/skel/glfw/glfw.cpp | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/src/skel/glfw/glfw.cpp b/src/skel/glfw/glfw.cpp index 982e8641..2722a4df 100644 --- a/src/skel/glfw/glfw.cpp +++ b/src/skel/glfw/glfw.cpp @@ -40,6 +40,7 @@ #include "Sprite2d.h" #include "AnimViewer.h" #include "Font.h" +#include "MemoryHeap.h" #define MAX_SUBSYSTEMS (16) @@ -277,7 +278,11 @@ psMouseSetPos(RwV2d *pos) RwMemoryFunctions* psGetMemoryFunctions(void) { +#ifdef USE_CUSTOM_ALLOCATOR + return &memFuncs; +#else return nil; +#endif } /* @@ -1461,6 +1466,10 @@ main(int argc, char *argv[]) RwV2d pos; RwInt32 i; +#ifdef USE_CUSTOM_ALLOCATOR + InitMemoryMgr(); +#endif + #ifndef _WIN32 struct sigaction act; act.sa_sigaction = terminateHandler; |