diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-16 10:53:18 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-11-16 13:10:23 -0500 |
commit | 63c5905914b40d33e45a6a3101ab5a7da4375918 (patch) | |
tree | 6c45c1e31f395f94e7aa90f781ed919e909dab1e /src/scrcmd.c | |
parent | 04cc923d6c17edae778f14cb431991867a05cf65 (diff) |
Continue updating event macro comments
Diffstat (limited to 'src/scrcmd.c')
-rw-r--r-- | src/scrcmd.c | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/scrcmd.c b/src/scrcmd.c index 563ff2222..98eaaf12c 100644 --- a/src/scrcmd.c +++ b/src/scrcmd.c @@ -1458,7 +1458,9 @@ bool8 ScrCmd_showmonpic(struct ScriptContext *ctx) bool8 ScrCmd_hidemonpic(struct ScriptContext *ctx) { - bool8 (*func)(void) = ScriptMenu_GetPicboxWaitFunc(); + // The hide function returns a pointer to a function + // that returns true once the pic is hidden + bool8 (*func)(void) = ScriptMenu_HidePokemonPic(); if (func == NULL) return FALSE; |