diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-12-08 15:00:48 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2023-12-08 15:00:48 -0500 |
| commit | 46ffaf283912a736ce6dc6922a4fb31b17cbe708 (patch) | |
| tree | 5e96f0a4cd96695f3307a547a0d8b66f4328267f /src/d/d_stage.cpp | |
| parent | c2625b0369e5d62e00333320b29563a2c20c510e (diff) | |
add default params to fopacm create funcs
Diffstat (limited to 'src/d/d_stage.cpp')
| -rw-r--r-- | src/d/d_stage.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/d/d_stage.cpp b/src/d/d_stage.cpp index 09868172..74d1bdaa 100644 --- a/src/d/d_stage.cpp +++ b/src/d/d_stage.cpp @@ -1489,13 +1489,13 @@ int dStage_playerInit(dStage_dt_c* i_stage, void* i_data, int num, void* i_file) JUT_ASSERT(1842, stageProc != 0); if (stageProc->mBase.mBase.mProcName != PROC_PLAY_SCENE) { - fopAcM_create(PROC_TITLE, 0, NULL, -1, NULL, NULL, 255, NULL); + fopAcM_create(PROC_TITLE, 0, NULL, -1); } fopMsgM_Create(PROC_METER, NULL, NULL); cXyz agb_pos(appen->mPos.x, appen->mPos.y + 10.0f, appen->mPos.z); - fopAcM_create(PROC_AGB, 0, &agb_pos, -1, NULL, NULL, 255, NULL); + fopAcM_create(PROC_AGB, 0, &agb_pos, -1); dComIfGp_setAgb(NULL); return 1; } |
