mirror of
https://github.com/projectPiki/pikmin2.git
synced 2025-02-25 08:11:26 +00:00
25 lines
559 B
C
25 lines
559 B
C
#ifndef _BUILDSETTINGS_H
|
|
#define _BUILDSETTINGS_H
|
|
|
|
// TODO: These should probably go into a precompiled header or build flags or
|
|
// something.
|
|
#define LOCALIZED true
|
|
#define MATCHING true
|
|
#define BUGFIX false
|
|
#define FOR_MODDING false
|
|
|
|
#define USADEMO1 1
|
|
#define USAFINAL 2
|
|
|
|
#if VERNUM == USAFINAL
|
|
#define BUILDTARGET USAFINAL
|
|
#elif VERNUM == USADEMO1
|
|
#define BUILDTARGET USADEMO1
|
|
#endif
|
|
|
|
// The following are constants that mods might be interested in tweaking.
|
|
#define GENERATOR_CACHE_HEAP_SIZE 0xA000
|
|
#define CHALLENGE_COURSE_COUNT 30
|
|
|
|
#endif
|