You've already forked HackerSM64
mirror of
https://github.com/HackerN64/HackerSM64.git
synced 2026-01-21 10:35:32 -08:00
* Moved puppyprint define to graphics / rearranged some debug defines for ease of access * Moved compatibility safeguards to config_safeguards.h * spacing and comment formatting * #272 Move GFX_POOL_SIZE to config_graphics.h * disable EASIER_DIALOG_TRIGGER by default * prevent redefining warnings * small ifdef typo * changed ifndef to undefs Fixes #262 Fixes #272
20 lines
569 B
C
20 lines
569 B
C
#pragma once
|
|
|
|
/*****************
|
|
* MENU SETTINGS *
|
|
*****************/
|
|
|
|
// -- EXIT COURSE SETTINGS --
|
|
|
|
// Disable exit course
|
|
//#define DISABLE_EXIT_COURSE
|
|
|
|
// Decides whether you can exit course while moving (has no effect if you disable exit course)
|
|
#define EXIT_COURSE_WHILE_MOVING
|
|
|
|
// Decides which level, area and warp ID the "exit course" option takes you to (has no effect if you disable exit course)
|
|
// Ensure that the warp exists, or else the game will crash.
|
|
#define EXIT_COURSE_LEVEL LEVEL_CASTLE
|
|
#define EXIT_COURSE_AREA 0x01
|
|
#define EXIT_COURSE_NODE 0x1F
|