mirror of
https://github.com/rh-hideout/pokeemerald-expansion.git
synced 2026-05-20 05:28:08 -05:00
17 lines
719 B
C
17 lines
719 B
C
#ifndef GUARD_CONFIG_QUICKSTART_H
|
|
#define GUARD_CONFIG_QUICKSTART_H
|
|
|
|
#define GENDER_MALE 0
|
|
#define GENDER_FEMALE 1
|
|
#define GENDER_RANDOM 2
|
|
|
|
// Quickstart Settings
|
|
#define ENABLE_QUICKSTART TRUE // If TRUE press SELECT to start a new game from the titlescreen (Disabled on Release Builds)
|
|
#define QUICKSTART_HUD TRUE // Displays a small hud element on the titlescreen when Quickstart is enabled
|
|
#define QUICKSTART_GENDER GENDER_RANDOM
|
|
|
|
#define QUICKSTART_HUD_X (DISPLAY_WIDTH - 32) // Quickstart HUD X Position
|
|
#define QUICKSTART_HUD_Y (16) // Quickstart HUD Y Position
|
|
|
|
#endif // GUARD_CONFIG_QUICKSTART_H
|