pokemon_summary_screen.c, part 3.

Also commit hgrep.sh for searching in non-c files.
This commit is contained in:
luckytyphlosion
2020-06-23 17:13:23 -04:00
parent 7cabc3d1a5
commit d096f37d75
5 changed files with 1062 additions and 2800 deletions
File diff suppressed because it is too large Load Diff
+10
View File
@@ -0,0 +1,10 @@
#!/bin/bash
# $1: phrase to find
if [ "$2" == "" ]; then
grep_flags="-wr"
else
grep_flags="$2"
fi
grep "$1" "$grep_flags" --include="*.h" --include="*.s" --include="*.inc" --include="*.txt" --exclude-dir=".git" --exclude-dir=".travis" --exclude-dir="build" --exclude-dir="common_syms" --exclude-dir="data" --exclude-dir="graphics" --exclude-dir="sound" --exclude-dir="tools"
+1 -1
View File
@@ -21,7 +21,7 @@ enum PokemonSummaryScreenMode
PSS_MODE_NORMAL, PSS_MODE_NORMAL,
PSS_MODE_UNK1, PSS_MODE_UNK1,
PSS_MODE_SELECT_MOVE, PSS_MODE_SELECT_MOVE,
PSS_MODE_UNK3, PSS_MODE_FORGET_MOVE,
PSS_MODE_UNK4, PSS_MODE_UNK4,
PSS_MODE_BOX, PSS_MODE_BOX,
}; };
+9
View File
@@ -1468,4 +1468,13 @@ extern const u8 gText_PokemonOnHook[];
extern const u8 gText_NotEvenANibble[]; extern const u8 gText_NotEvenANibble[];
extern const u8 gText_ItGotAway[]; extern const u8 gText_ItGotAway[];
// pokemon_summary_screen
extern const u8 gUnknown_8419C39[];
extern const u8 gUnknown_8419C92[];
extern const u8 gUnknown_8419CA2[];
extern const u8 gUnknown_8419C45[];
extern const u8 gUnknown_8419C82[];
extern const u8 gUnknown_8416202[];
extern const u8 gUnknown_84161EF[];
#endif //GUARD_STRINGS_H #endif //GUARD_STRINGS_H
File diff suppressed because it is too large Load Diff