Merge pull request #29 from coltongit/patch-1
Fix save corruption in some 64-bit builds
This commit is contained in:
commit
b43313974c
|
@ -306,7 +306,7 @@ void rendering_init(void) {
|
|||
}
|
||||
|
||||
void config_gfx_pool(void) {
|
||||
gGfxPool = &gGfxPools[gGlobalTimer % 2];
|
||||
gGfxPool = &gGfxPools[gGlobalTimer % GFX_NUM_POOLS];
|
||||
set_segment_base_addr(1, gGfxPool->buffer);
|
||||
gGfxSPTask = &gGfxPool->spTask;
|
||||
gDisplayListHead = gGfxPool->buffer;
|
||||
|
|
Loading…
Reference in New Issue