Closed ExcmoJack closed 11 months ago
It looks like Porymap correctly output your name in the JSON file. This would be an issue with jsonproc
in pokeemerald (or whichever repo you're using), i.e the tool responsible for converting that JSON data to C
Oh, I got it, I thought it was part of porymap. Thanks!
Thanks for the report regardless! I opened an issue in pokeemerald to track this problem
I noticed that when a MAPSEC name has an special character in Region Map Editor it is written in region_map_sections.json, and then converted into code in region_map_entries.h.
The issue is that when typing
Pokémon
in the JSON it becomesPok__mon
in the .h, converting thaté
character into__
for some reason. However, when typing another special character likeá
it becomes a�
, impeding to build the project due to syntax errors:Region Map Editor:
region_map_sections.json:
region_map_entries.h:
I know not anybody makes a game in Spanish (or whatever language which uses special characters as tildes or etc), but there is a solution already implemented for this issue, but just for the
é
character in Pokémon. What I propose is to extend this behavior to all special characters, replacing them with__
as for now or replacing them for the same character without the tilde.