diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-11-13 23:19:08 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-11-13 23:19:08 -0500 |
commit | 9a932cd9c3089c03adada30ace4c79a84bf73cf0 (patch) | |
tree | b8dfc2d147b8e5f92c0f8e67e3d06bcc2f8453cc /src/pokemon_jump.c | |
parent | b14fe9dce369b1a78c5f4f653b4c7e2e2d67d98d (diff) | |
parent | 8e8b70c15c1e34074d27acaa07f8e28d0d3d9e89 (diff) |
Merge pull request #1549 from GriffinRichards/doc-binterface
Document remaining symbols in battle_interface, palette, and save
Diffstat (limited to 'src/pokemon_jump.c')
-rwxr-xr-x | src/pokemon_jump.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/pokemon_jump.c b/src/pokemon_jump.c index 85acb2fee..f6aa82391 100755 --- a/src/pokemon_jump.c +++ b/src/pokemon_jump.c @@ -1282,12 +1282,12 @@ static bool32 SavePokeJump(void) case 2: if (AreLinkQueuesEmpty()) { - CreateTask(Task_LinkSave, 6); + CreateTask(Task_LinkFullSave, 6); sPokemonJump->mainState++; } break; case 3: - if (!FuncIsActiveTask(Task_LinkSave)) + if (!FuncIsActiveTask(Task_LinkFullSave)) { ClearMessageWindow(); sPokemonJump->mainState++; |