Fix some -Wsign-compare warnings

This commit is contained in:
Tillmann Karras 2015-02-24 01:40:48 +01:00
parent 7056f6308a
commit e2fec13ab6
1 changed files with 1 additions and 1 deletions

View File

@ -23,7 +23,7 @@
static const u64 TEXHASH_INVALID = 0; static const u64 TEXHASH_INVALID = 0;
static const int TEXTURE_KILL_THRESHOLD = 10; static const int TEXTURE_KILL_THRESHOLD = 10;
static const int TEXTURE_POOL_KILL_THRESHOLD = 3; static const int TEXTURE_POOL_KILL_THRESHOLD = 3;
static const u64 FRAMECOUNT_INVALID = 0; static const int FRAMECOUNT_INVALID = 0;
TextureCache *g_texture_cache; TextureCache *g_texture_cache;