diff options
| author | Derek Hensley <hensley.derek58@gmail.com> | 2024-01-31 16:07:12 -0800 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-01-31 19:07:12 -0500 |
| commit | 06379c310941c031451c87c09d32cc7a8860e7fe (patch) | |
| tree | 99abb62045709a4e095606299425ae241593b0e2 /src/code/game.c | |
| parent | a0d31dba680fdddb354dc8aae6ae0efe1663ef3f (diff) | |
Gamealloc, Graph, and Graphalloc retail OK (#1675)
* Gamealloc OK
* Graph + Graphalloc OK
* PR review
* gfxalloc
* new lines
* Remove imposter
Diffstat (limited to 'src/code/game.c')
| -rw-r--r-- | src/code/game.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/code/game.c b/src/code/game.c index 2bc179d68..ea6e399f5 100644 --- a/src/code/game.c +++ b/src/code/game.c @@ -156,7 +156,7 @@ void GameState_Draw(GameState* gameState, GraphicsContext* gfxCtx) { OPEN_DISPS(gfxCtx, "../game.c", 746); - newDList = Graph_GfxPlusOne(polyOpaP = POLY_OPA_DISP); + newDList = Gfx_Open(polyOpaP = POLY_OPA_DISP); gSPDisplayList(OVERLAY_DISP++, newDList); if (R_ENABLE_FB_FILTER == 1) { @@ -193,7 +193,7 @@ void GameState_Draw(GameState* gameState, GraphicsContext* gfxCtx) { } gSPEndDisplayList(newDList++); - Graph_BranchDlist(polyOpaP, newDList); + Gfx_Close(polyOpaP, newDList); POLY_OPA_DISP = newDList; if (1) {} @@ -230,11 +230,11 @@ void func_800C49F4(GraphicsContext* gfxCtx) { OPEN_DISPS(gfxCtx, "../game.c", 846); - newDlist = Graph_GfxPlusOne(polyOpaP = POLY_OPA_DISP); + newDlist = Gfx_Open(polyOpaP = POLY_OPA_DISP); gSPDisplayList(OVERLAY_DISP++, newDlist); gSPEndDisplayList(newDlist++); - Graph_BranchDlist(polyOpaP, newDlist); + Gfx_Close(polyOpaP, newDlist); POLY_OPA_DISP = newDlist; if (1) {} |
