You've already forked Microtransactions64
mirror of
https://github.com/Print-and-Panic/Microtransactions64.git
synced 2026-01-21 10:17:19 -08:00
18 lines
447 B
C
18 lines
447 B
C
#pragma once
|
|
|
|
/**********************
|
|
* BENCHMARK SETTINGS *
|
|
**********************/
|
|
|
|
/**
|
|
* Enabling this will enable a set of defines in order to run a benchmark on the game.
|
|
* Currently this just starts the credits, and enables PUPPYPRINT_DEBUG.
|
|
*/
|
|
// #define ENABLE_CREDITS_BENCHMARK
|
|
|
|
#ifdef ENABLE_CREDITS_BENCHMARK
|
|
#define DEBUG_ALL
|
|
#define ENABLE_VANILLA_LEVEL_SPECIFIC_CHECKS
|
|
#define TEST_LEVEL LEVEL_CASTLE_GROUNDS
|
|
#endif
|