pokemon_summary_screen.c, part 3.
Also commit hgrep.sh for searching in non-c files.
This commit is contained in:
File diff suppressed because it is too large
Load Diff
@@ -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"
|
||||
@@ -21,7 +21,7 @@ enum PokemonSummaryScreenMode
|
||||
PSS_MODE_NORMAL,
|
||||
PSS_MODE_UNK1,
|
||||
PSS_MODE_SELECT_MOVE,
|
||||
PSS_MODE_UNK3,
|
||||
PSS_MODE_FORGET_MOVE,
|
||||
PSS_MODE_UNK4,
|
||||
PSS_MODE_BOX,
|
||||
};
|
||||
|
||||
@@ -1468,4 +1468,13 @@ extern const u8 gText_PokemonOnHook[];
|
||||
extern const u8 gText_NotEvenANibble[];
|
||||
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
|
||||
|
||||
+1042
-24
File diff suppressed because it is too large
Load Diff
Reference in New Issue
Block a user