diff options
author | YamaArashi <YamaArashi@users.noreply.github.com> | 2017-01-17 08:11:32 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2017-01-17 08:11:32 -0800 |
commit | 90c7299e519783fe1e22d9ec8d3351d08bda65f6 (patch) | |
tree | b24d8bdcd6809c5465c6aa18f6d3109af2aad915 /src/save_menu_util.c | |
parent | 4f9aab81ffdfedc84dfeafb88b4248dc6c7c2068 (diff) | |
parent | 46cf490edd4fd5971d3a3511516beb0910e33c32 (diff) |
Merge pull request #193 from marijnvdwerf/clean/cleanup-1
Clean up various things
Diffstat (limited to 'src/save_menu_util.c')
-rw-r--r-- | src/save_menu_util.c | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/save_menu_util.c b/src/save_menu_util.c index 64acd12f7..7790bbb1b 100644 --- a/src/save_menu_util.c +++ b/src/save_menu_util.c @@ -1,10 +1,10 @@ #include "global.h" #include "save_menu_util.h" #include "asm.h" -#include "menu.h" #include "event_data.h" -#include "string_util.h" +#include "menu.h" #include "pokedex.h" +#include "string_util.h" extern u8 gOtherText_Player[]; extern u8 gOtherText_Badges[]; @@ -54,9 +54,9 @@ void HandleCloseSaveWindow(u16 left, u16 top) MenuZeroFillWindowRect(left, top, left + width, top + 9); } -/* -theory: This function was used to handle the save menu window's width being auto sized from -either 12 or 13 in an older source. Whatever was here might have either been optimized out by +/* +theory: This function was used to handle the save menu window's width being auto sized from +either 12 or 13 in an older source. Whatever was here might have either been optimized out by GF's compiler or was dummied out to always return a TRUE at some point. */ u8 IsResizeSaveWindowEnabled(void) // i don't know what else to name it.. |