mirror of
https://github.com/projectPiki/pikmin2.git
synced 2024-11-27 07:10:42 +00:00
3589986760
USADEMO1 and USAFINAL are defined as version numbers already, so they can be used for the VERNUM check. In the case that version numbers are changed up in the future this means less places to change numbers.
23 lines
503 B
C
23 lines
503 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 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
|