diff options
| author | Tillmann Karras <tilkax@gmail.com> | 2015-02-24 01:40:48 +0100 |
|---|---|---|
| committer | Tillmann Karras <tilkax@gmail.com> | 2015-02-24 10:29:59 +0100 |
| commit | e2fec13ab6d02617a2f17c2ae892ef3384a222d6 (patch) | |
| tree | 25268ed92e351f4cbbce548a6d337a0e697f9d1a /Source/Core/VideoCommon/TextureCacheBase.cpp | |
| parent | 7056f6308a2eea4ca84ed311a7932b6d5ed42b53 (diff) | |
Fix some -Wsign-compare warnings
Diffstat (limited to 'Source/Core/VideoCommon/TextureCacheBase.cpp')
| -rw-r--r-- | Source/Core/VideoCommon/TextureCacheBase.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/TextureCacheBase.cpp b/Source/Core/VideoCommon/TextureCacheBase.cpp index 62fdfa80d2..7bd5a6b570 100644 --- a/Source/Core/VideoCommon/TextureCacheBase.cpp +++ b/Source/Core/VideoCommon/TextureCacheBase.cpp @@ -23,7 +23,7 @@ static const u64 TEXHASH_INVALID = 0; static const int TEXTURE_KILL_THRESHOLD = 10; static const int TEXTURE_POOL_KILL_THRESHOLD = 3; -static const u64 FRAMECOUNT_INVALID = 0; +static const int FRAMECOUNT_INVALID = 0; TextureCache *g_texture_cache; |
