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
I think the route we're going with now is to have a #define for each bug fix, and selectively enable them in config.h, and the actual code just uses #ifdef BUGFIX_SOMEBUGFIX instead of checking the language. It doesn't seem any more verbose to do something like this:
#if GERMAN || FRENCH || ITALIAN || SPANISH
#define BUGFIX_SAVEFAILEDSCREEN2
#define BUGFIX_TRAINERAPPROACH
#define BUGFIX_FOO
#define BUGFIX_BAR
//etc
#endif
Some of the code changes being made for German R/S, like bugfixes, apply to all European non-English localisations.
I propose adding something like this to
config.h
:...then check for the "EUROPE" define for the specific changes / etc that apply for all European non-English localisations.
This should avoid lots of repeated checks for several languages (possibly in several files) in the future.
The text was updated successfully, but these errors were encountered: