summaryrefslogtreecommitdiff
path: root/src/code/flg_set.c
diff options
context:
space:
mode:
authorDerek Hensley <hensley.derek58@gmail.com>2024-01-31 16:07:12 -0800
committerGitHub <noreply@github.com>2024-01-31 19:07:12 -0500
commit06379c310941c031451c87c09d32cc7a8860e7fe (patch)
tree99abb62045709a4e095606299425ae241593b0e2 /src/code/flg_set.c
parenta0d31dba680fdddb354dc8aae6ae0efe1663ef3f (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/flg_set.c')
-rw-r--r--src/code/flg_set.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/code/flg_set.c b/src/code/flg_set.c
index 04167c2ec..190439486 100644
--- a/src/code/flg_set.c
+++ b/src/code/flg_set.c
@@ -78,7 +78,7 @@ void FlagSet_Update(PlayState* play) {
s32 pad;
polyOpa = POLY_OPA_DISP;
- gfx = Graph_GfxPlusOne(polyOpa);
+ gfx = Gfx_Open(polyOpa);
gSPDisplayList(OVERLAY_DISP++, gfx);
GfxPrint_Init(&printer);
@@ -171,7 +171,7 @@ void FlagSet_Update(PlayState* play) {
GfxPrint_Destroy(&printer);
gSPEndDisplayList(gfx++);
- Graph_BranchDlist(polyOpa, gfx);
+ Gfx_Close(polyOpa, gfx);
POLY_OPA_DISP = gfx;
}