mirror of
https://github.com/TerryCavanagh/VVVVVV.git
synced 2026-01-29 17:38:16 +03:00
Fix compiler warnings on Android
This commit is contained in:
committed by
Misa Elizabeth Kai
parent
246a91c45e
commit
d6a43fad90
@@ -24,8 +24,13 @@
|
||||
#define Color_BOLD_RED COLOR("\x1b[1;31m")
|
||||
#define Color_BOLD_GRAY COLOR("\x1b[1;90m")
|
||||
|
||||
static int output_enabled = 1;
|
||||
#ifdef __ANDROID__
|
||||
const int color_supported = 0;
|
||||
#else
|
||||
static int color_supported = 0;
|
||||
#endif
|
||||
|
||||
static int output_enabled = 1;
|
||||
static int color_enabled = 1;
|
||||
static int debug_enabled = 0;
|
||||
static int info_enabled = 1;
|
||||
|
||||
Reference in New Issue
Block a user