diff options
author | YamaArashi <shadow962@live.com> | 2016-09-12 01:26:45 -0700 |
---|---|---|
committer | YamaArashi <shadow962@live.com> | 2016-09-12 01:26:45 -0700 |
commit | 9db354596485ebabb05a6c026db0a2e41b07cb6d (patch) | |
tree | ab238a016bfaab0b7e28960fe594e0f6c1d1c179 | |
parent | 6a79077def3dc5fcd971510c7c4d53516d8458c5 (diff) |
fix do-while formatting
-rw-r--r-- | src/pokemon_2.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/pokemon_2.c b/src/pokemon_2.c index b39c76a0a..04a1ed622 100644 --- a/src/pokemon_2.c +++ b/src/pokemon_2.c @@ -902,8 +902,7 @@ u8 SendMonToPC(struct Pokemon *mon) i++; if (i == 14) i = 0; - } - while (i != gPokemonStorage.currentBox); + } while (i != gPokemonStorage.currentBox); return 2; } |