You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
Refresh 3
This commit is contained in:
@@ -9,15 +9,19 @@
|
||||
|
||||
// Bug Fixes
|
||||
// --| Categories
|
||||
/// Turn on bug fixes for really bad, C standard breaking code. As these bugs
|
||||
/// have caused compilation issues with modern GCC, these bug fixes are
|
||||
/// automatically enabled when compiling with GCC
|
||||
#define BUGFIXES_CRITICAL (0 || __GNUC__)
|
||||
/// Turn on bug fixes for really bad, C standard breaking code. This is
|
||||
/// enabled automatically when building with non-IDO compilers, or if
|
||||
/// NON_MATCHING is set.
|
||||
#if !defined(__sgi) || defined(NON_MATCHING)
|
||||
#define BUGFIXES_CRITICAL 1
|
||||
#else
|
||||
#define BUGFIXES_CRITICAL 0
|
||||
#endif
|
||||
|
||||
// --| US Version Nintendo Bug Fixes
|
||||
/// Fixes bug where obtaining over 999 coins sets the number of lives to 999 (or -25)
|
||||
#define BUGFIX_MAX_LIVES (0 || VERSION_US || VERSION_EU)
|
||||
/// Fixes bug where the Boss music won't fade out after defeating King Bob-omb
|
||||
/// Fixes bug where the Boss music won't fade out after defeating King Bob-omb
|
||||
#define BUGFIX_KING_BOB_OMB_FADE_MUSIC (0 || VERSION_US || VERSION_EU)
|
||||
/// Fixes bug in Bob-Omb Battlefield where entering a warp stops the Koopa race music
|
||||
#define BUGFIX_KOOPA_RACE_MUSIC (0 || VERSION_US || VERSION_EU)
|
||||
|
||||
Reference in New Issue
Block a user