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
@@ -76,6 +76,7 @@ static const PHYSFS_Allocator allocator = {
|
||||
SDL_free
|
||||
};
|
||||
|
||||
#ifndef __ANDROID__
|
||||
static bool mount_pre_datazip(
|
||||
char* out_path,
|
||||
const char* real_dirname,
|
||||
@@ -174,6 +175,7 @@ static bool mount_pre_datazip(
|
||||
|
||||
return dir_found;
|
||||
}
|
||||
#endif
|
||||
|
||||
int FILESYSTEM_init(char *argvZero, char* baseDir, char *assetsPath, char* langDir, char* fontsDir)
|
||||
{
|
||||
|
||||
@@ -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