Change abbreviation for Japanese

This commit is contained in:
Lorenzooone 2023-03-30 19:18:38 +02:00
parent 671882307d
commit 305aafdcb5
4 changed files with 4 additions and 4 deletions

View File

@ -28,7 +28,7 @@ By adjusting the settings available in the Main Menu, you can choose which gener
The "Act as" option allows one to choose whether the console will act as the main unit or not. Both options will work fine, but it's suggested not to change this unless you know what you're doing.
#### Trading to Gen 1 or Gen 2
- If you want to trade to the Japanese versions of Gen 1 or Gen 2 games, you must set the Region option in the Main Menu to Jap.
- If you want to trade to the Japanese versions of Gen 1 or Gen 2 games, you must set the Region option in the Main Menu to Jpn.
- The Pokémon received will be totally legitimate, barring their level and movesets.
- You will be able to freely change the nature of the received Pokémon during the trade.
- Trading across Generations is a lossy operation. As such, some information (like ribbons) will be lost!!!

View File

@ -115,7 +115,7 @@ const char* subgame_rs_strings[] = {"R", "S"};
const char* subgame_frlg_strings[] = {"FR", "LG"};
const char* game_strings[] = {"???", "Sapphire", "Ruby", "Emerald", "Fire Red", "Leaf Green"};
const char* actor_strings[] = {"Master", "Slave"};
const char* region_strings[] = {"Int", "Jap"};
const char* region_strings[] = {"Int", "Jpn"};
const char* target_strings[] = {"Gen 1", "Gen 2", "Gen 3"};
const char* stat_strings[] = {"Hp", "Atk", "Def", "SpA", "SpD", "Spe"};
const char* contest_strings[] = {"Coolness", "Beauty", "Cuteness", "Smartness", "Toughness", "Feel"};

View File

@ -20,7 +20,7 @@
#include "gen3_spanish_valid_chars_bin.h"
#include "gen3_german_valid_chars_bin.h"
#include "gen3_int_valid_chars_bin.h"
#include "gen3_jap_valid_chars_bin.h"
#include "gen3_jpn_valid_chars_bin.h"
#include "item_names_bin.h"
#include "location_names_bin.h"
#include "pokeball_names_bin.h"
@ -956,7 +956,7 @@ const u8* get_validity_keyboard(u8 language) {
u8 kind = language_keyboard_kind[language];
const u8* validity_keyboard = gen3_int_valid_chars_bin;
if(kind == 0)
validity_keyboard = gen3_jap_valid_chars_bin;
validity_keyboard = gen3_jpn_valid_chars_bin;
else if(kind == 1)
validity_keyboard = gen3_int_valid_chars_bin;
else if(kind == 2)