diff options
author | GriffinR <griffin.g.richards@gmail.com> | 2021-02-05 12:08:49 -0500 |
---|---|---|
committer | GriffinR <griffin.g.richards@gmail.com> | 2021-02-05 12:08:49 -0500 |
commit | 2e57a00d17d80853dc3b14788f7197ede785be8b (patch) | |
tree | 6d6928a7d881102a85e5acec1cd377d465169809 /src/contest.c | |
parent | a240481d5ffe7f9c7a62faf0617dff888d84d745 (diff) |
Use GAME_LANGUAGE instead of LANGUAGE_ENGLISH
Diffstat (limited to 'src/contest.c')
-rw-r--r-- | src/contest.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/contest.c b/src/contest.c index 36c32683a..8d8bd666c 100644 --- a/src/contest.c +++ b/src/contest.c @@ -5998,7 +5998,7 @@ static u8 GetMonNicknameLanguage(u8 *nickname) u8 ret = GAME_LANGUAGE; if (nickname[0] == EXT_CTRL_CODE_BEGIN && nickname[1] == EXT_CTRL_CODE_JPN) - return LANGUAGE_ENGLISH; + return GAME_LANGUAGE; if (StringLength(nickname) < PLAYER_NAME_LENGTH - 1) { |