You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The constant values for sound effects and music are defined independently in charmap.txt and include/constants/songs.h, so for example, changing the value of SE_RAIN in songs.h, or possibly adding a new song won't reflect in the charmap.
Placeholder IDs are also defined independently, e.g. STR_VAR_2 is defined as FD 03 in the charmap and also as #define PLACEHOLDER_ID_STRING_VAR_2 0x3 in gflib/text.h. This means changing or adding placeholders requires ensuring that the constant value is exactly the same.
The text was updated successfully, but these errors were encountered:
ghoulslash
pushed a commit
to ghoulslash/pokeemerald
that referenced
this issue
Jan 15, 2021
Two examples
SE_RAIN
in songs.h, or possibly adding a new song won't reflect in the charmap.STR_VAR_2
is defined asFD 03
in the charmap and also as#define PLACEHOLDER_ID_STRING_VAR_2 0x3
in gflib/text.h. This means changing or adding placeholders requires ensuring that the constant value is exactly the same.The text was updated successfully, but these errors were encountered: