summaryrefslogtreecommitdiff
path: root/src/data/pokemon
diff options
context:
space:
mode:
authorjiangzhengwenjz <jiangzhengwenjzw@qq.com>2019-11-24 03:50:28 +0800
committerjiangzhengwenjz <jiangzhengwenjzw@qq.com>2019-11-24 08:57:57 +0800
commit7817546781884daeaf46ebdede62d02ad0a7ab29 (patch)
treecc09eeec2a7c53f6e01d626dc9c1146d6ebdd969 /src/data/pokemon
parent972c044d71a870128d2ac41b5b407a1db41d60de (diff)
clean up
Diffstat (limited to 'src/data/pokemon')
-rw-r--r--src/data/pokemon/tutor_learnsets.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/data/pokemon/tutor_learnsets.h b/src/data/pokemon/tutor_learnsets.h
index 3f2fbf6a0..afd3814a5 100644
--- a/src/data/pokemon/tutor_learnsets.h
+++ b/src/data/pokemon/tutor_learnsets.h
@@ -1,4 +1,4 @@
-const u16 sTutorMoves[TUTOR_MOVE_COUNT] =
+static const u16 sTutorMoves[TUTOR_MOVE_COUNT] =
{
[TUTOR_MOVE_MEGA_PUNCH] = MOVE_MEGA_PUNCH,
[TUTOR_MOVE_SWORDS_DANCE] = MOVE_SWORDS_DANCE,
@@ -17,9 +17,9 @@ const u16 sTutorMoves[TUTOR_MOVE_COUNT] =
[TUTOR_MOVE_SUBSTITUTE] = MOVE_SUBSTITUTE,
};
-#define TUTOR(move) (1u << (TUTOR_##move))
+#define TUTOR(move) (1 << (TUTOR_##move))
-const u16 sTutorLearnsets[] =
+static const u16 sTutorLearnsets[] =
{
[SPECIES_NONE] = 0,