Move setting

This commit is contained in:
Miloslav Číž 2020-10-24 23:34:24 +02:00
parent 80f7d364a3
commit dd70ed47b4
1 changed files with 9 additions and 10 deletions

View File

@ -25,7 +25,6 @@
(e.g. half FPS at half speed), so if you want to keep the FPS, divide it by (e.g. half FPS at half speed), so if you want to keep the FPS, divide it by
the multiplier value. the multiplier value.
*/ */
#ifndef SFG_TIME_MULTIPLIER #ifndef SFG_TIME_MULTIPLIER
#define SFG_TIME_MULTIPLIER 1024 #define SFG_TIME_MULTIPLIER 1024
#endif #endif
@ -369,6 +368,15 @@
#define SFG_ARDUINO 0 #define SFG_ARDUINO 0
#endif #endif
/**
Whether levels background (in distance or transparent wall textures) should
be drawn. If turned off, the background will be constant color, which can
noticably increase performance.
*/
#ifndef SFG_DRAW_LEVEL_BACKGROUND
#define SFG_DRAW_LEVEL_BACKGROUND 1
#endif
//------ developer/debug settings ------ //------ developer/debug settings ------
/** /**
@ -421,13 +429,4 @@
#define SFG_UNLOCK_DOOR 0 #define SFG_UNLOCK_DOOR 0
#endif #endif
/**
Whether levels background (in distance or transparent wall textures) should
be drawn. If turned off, the background will be constant color, which can
noticably increase performance.
*/
#ifndef SFG_DRAW_LEVEL_BACKGROUND
#define SFG_DRAW_LEVEL_BACKGROUND 1
#endif
#endif // guard #endif // guard