Pinball/src/parameters.h

15 lines
245 B
C
Raw Normal View History

2023-05-27 21:48:20 +02:00
#ifndef PARAMETERS_H
#define PARAMETERS_H
2023-06-07 09:02:10 +02:00
/* define main macros and usefull parameters */
2023-05-27 21:48:20 +02:00
#define DEBUG_MODE 0
2023-06-07 09:02:10 +02:00
#define BIAS 1
#define NOBIAS (1-BIAS)
#define CALCEMU 1
2023-06-07 09:02:10 +02:00
#define SCALE_PIXEL 1
2023-05-27 21:48:20 +02:00
2023-09-11 22:43:25 +02:00
#define DEMO 1
2023-05-27 21:48:20 +02:00
#endif