2019-10-05 21:08:05 +02:00
|
|
|
#ifndef CONFIG_H
|
2020-05-13 13:57:25 +02:00
|
|
|
|
2019-10-05 21:08:05 +02:00
|
|
|
#define CONFIG_H
|
2019-08-25 06:46:40 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* @file config.h
|
2024-06-27 17:09:28 +02:00
|
|
|
* A catch-all file for configuring various bugfixes and other settings in SM64
|
2019-08-25 06:46:40 +02:00
|
|
|
*/
|
|
|
|
|
|
|
|
// Bug Fixes
|
|
|
|
// --| US Version Nintendo Bug Fixes
|
|
|
|
/// Fixes bug where obtaining over 999 coins sets the number of lives to 999 (or -25)
|
2020-04-03 20:57:26 +02:00
|
|
|
#define BUGFIX_MAX_LIVES (0 || VERSION_US || VERSION_EU || VERSION_SH)
|
2019-11-03 20:36:27 +01:00
|
|
|
/// Fixes bug where the Boss music won't fade out after defeating King Bob-omb
|
2022-03-13 09:17:10 +01:00
|
|
|
#define BUGFIX_KING_BOB_OMB_FADE_MUSIC (0 || VERSION_US || VERSION_EU || VERSION_SH)
|
2019-08-25 06:46:40 +02:00
|
|
|
/// Fixes bug in Bob-Omb Battlefield where entering a warp stops the Koopa race music
|
2020-04-03 20:57:26 +02:00
|
|
|
#define BUGFIX_KOOPA_RACE_MUSIC (0 || VERSION_US || VERSION_EU || VERSION_SH)
|
2019-08-25 06:46:40 +02:00
|
|
|
/// Fixes bug where Piranha Plants do not reset their action state when the
|
|
|
|
/// player exits their activation radius.
|
2020-04-03 20:57:26 +02:00
|
|
|
#define BUGFIX_PIRANHA_PLANT_STATE_RESET (0 || VERSION_US || VERSION_EU || VERSION_SH)
|
2019-08-25 06:46:40 +02:00
|
|
|
/// Fixes bug where sleeping Piranha Plants damage players that bump into them
|
2020-04-03 20:57:26 +02:00
|
|
|
#define BUGFIX_PIRANHA_PLANT_SLEEP_DAMAGE (0 || VERSION_US || VERSION_SH)
|
2019-08-25 06:46:40 +02:00
|
|
|
/// Fixes bug where it shows a star when you grab a key in bowser battle stages
|
2022-03-13 09:17:10 +01:00
|
|
|
#define BUGFIX_STAR_BOWSER_KEY (0 || VERSION_US || VERSION_EU || VERSION_SH)
|
2019-08-25 06:46:40 +02:00
|
|
|
|
2019-10-05 21:08:05 +02:00
|
|
|
// Screen Size Defines
|
2019-08-25 06:46:40 +02:00
|
|
|
#define SCREEN_WIDTH 320
|
|
|
|
#define SCREEN_HEIGHT 240
|
|
|
|
|
2020-05-14 11:18:12 +02:00
|
|
|
// What's the point of having a border if we're not an N64?
|
|
|
|
#define BORDER_HEIGHT 0 // Never use a border as not-N64
|
2019-08-25 06:46:40 +02:00
|
|
|
|
2020-06-02 18:44:34 +02:00
|
|
|
#endif // CONFIG_H
|