diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2023-10-02 21:52:41 -0700 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2023-10-03 15:52:41 +1100 |
| commit | 4ca54d704eb84b6d9f4142d4445ac1e400e14fd4 (patch) | |
| tree | d127b15832f31c285269dbfe5c122670ccb51067 /src/code/z_sram_NES.c | |
| parent | 2a485ad774d10ce5225dc8e119c0879108c78740 (diff) | |
Speedmeter OK (#1393)
* Match
* data + bss
* x
* Small cleanup
* maxVal
* gUnkTimeAcc
* SET_FULLSCREEN_VIEWPORT_HIRES
* Update permuter settings
* SET_FULLSCREEN_VIEWPORT_DYNAMIC
Diffstat (limited to 'src/code/z_sram_NES.c')
| -rw-r--r-- | src/code/z_sram_NES.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/z_sram_NES.c b/src/code/z_sram_NES.c index 198dac4e9..8d382e5db 100644 --- a/src/code/z_sram_NES.c +++ b/src/code/z_sram_NES.c @@ -1866,7 +1866,7 @@ void Sram_InitSram(GameState* gameState, SramContext* sramCtx) { void Sram_Alloc(GameState* gameState, SramContext* sramCtx) { if (gSaveContext.flashSaveAvailable) { - sramCtx->saveBuf = THA_AllocTailAlign16(&gameState->heap, SAVE_BUFFER_SIZE); + sramCtx->saveBuf = THA_AllocTailAlign16(&gameState->tha, SAVE_BUFFER_SIZE); sramCtx->status = 0; } } |
