Super Mario 64 Source
A Super Mario 64 decompilation, brought to you by a bunch of clever folks.
config.h
Go to the documentation of this file.
1 #ifndef _CONFIG_H_
2 #define _CONFIG_H_
3 
10 // Bug Fixes
11 // --| Categories
15 #define BUGFIXES_CRITICAL (0 || __GNUC__)
16 
17 // --| US Version Nintendo Bug Fixes
19 #define BUGFIX_MAX_LIVES (0 || VERSION_US || VERSION_EU)
20 #define BUGFIX_KOOPA_RACE_MUSIC (0 || VERSION_US || VERSION_EU)
22 #define BUGFIX_PIRANHA_PLANT_STATE_RESET (0 || VERSION_US || VERSION_EU)
25 #define BUGFIX_PIRANHA_PLANT_SLEEP_DAMAGE (0 || VERSION_US || VERSION_EU)
27 #define BUGFIX_STAR_BOWSER_KEY (0 || VERSION_US || VERSION_EU)
29 
30 // --| Goddard / Mario Head Bug Fixes
32 #define BUGFIX_GODDARD_MISSING_RETURN (0 || BUGFIXES_CRITICAL)
33 #define BUGFIX_GODDARD_BAD_DECLARATIONS (0 || BUGFIXES_CRITICAL)
36 
37 //Screen Size Defines
38 #define SCREEN_WIDTH 320
39 #define SCREEN_HEIGHT 240
40 
41 //Border Height Define for NTSC Versions
42 #define BORDER_HEIGHT 8
43 
44 #endif