mirror of
https://github.com/GearsProgress/Poke_Transporter_GB.git
synced 2026-03-21 17:34:42 -05:00
30 lines
948 B
C
30 lines
948 B
C
#ifndef DEBUG_MODE_H
|
|
#define DEBUG_MODE_H
|
|
|
|
#define VERSION "v1.2.0b"
|
|
#define PTGB_BUILD_LANGUAGE ENG_ID
|
|
|
|
#define DEBUG_MODE true
|
|
|
|
#define PRINT_LINK_DATA (false && DEBUG_MODE) // This is currently broken... not sure why
|
|
#define INSTANT_TEXT_SPEED (true && DEBUG_MODE)
|
|
#define IGNORE_GAME_PAK (true && DEBUG_MODE)
|
|
#define IGNORE_LINK_CABLE (true && DEBUG_MODE)
|
|
#define IGNORE_MG_E4_FLAGS (true && DEBUG_MODE)
|
|
#define IGNORE_UNRECEIVED_PKMN (true && DEBUG_MODE)
|
|
#define FORCE_TUTORIAL (false && DEBUG_MODE)
|
|
#define DONT_REMOVE_PKMN (true && DEBUG_MODE)
|
|
#define DONT_HIDE_INVALID_PKMN (false && DEBUG_MODE)
|
|
#define IGNORE_DEX_COMPLETION (false && DEBUG_MODE)
|
|
#define WRITE_CABLE_DATA_TO_SAVE (false && DEBUG_MODE)
|
|
#define SHOW_DATA_PACKETS (false && DEBUG_MODE)
|
|
|
|
#define DEBUG_GAME EMERALD_ID
|
|
#define DEBUG_VERS VERS_1_0
|
|
#define DEBUG_LANG LANG_ENG
|
|
|
|
#define ENABLE_MATCH_PID true
|
|
#define ENABLE_OLD_EVENT false
|
|
#define ENABLE_DEBUG_SCREEN true
|
|
|
|
#endif |