fix: add `ShouldAdvanceSilent` to `functions.h` (#1920)

The implicit declaration was causing issues on Linux when building in release mode. The call was getting optimized out which was preventing the "equip now?" message box from functioning as intended. Adding the `Message_ShouldAdvanceSilent` declaration to `functions.h`resolves the issue.
This commit is contained in:
briaguya 2022-11-05 15:33:04 -04:00 committed by GitHub
parent 4396411d10
commit 274a108167
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 0 deletions

View File

@ -2397,6 +2397,7 @@ f32 absf(f32);
void* func_801068B0(void* dst, void* src, size_t size);
void Message_UpdateOcarinaGame(GlobalContext* globalCtx);
u8 Message_ShouldAdvance(GlobalContext* globalCtx);
u8 Message_ShouldAdvanceSilent(GlobalContext* globalCtx);
void Message_CloseTextbox(GlobalContext*);
void Message_StartTextbox(GlobalContext* globalCtx, u16 textId, Actor* actor);
void Message_ContinueTextbox(GlobalContext* globalCtx, u16 textId);