summaryrefslogtreecommitdiff
path: root/Source/Core/VideoCommon/HiresTextures.cpp
diff options
context:
space:
mode:
authorLéo Lam <leo@innovatetechnologi.es>2017-12-02 21:48:01 +0100
committerLéo Lam <leo@innovatetechnologi.es>2017-12-02 21:48:01 +0100
commit67ba326ff6e9db7227ee9992501e1e319a0652c7 (patch)
tree7ca2aaa5bb47634cb54864a532a812487187dc04 /Source/Core/VideoCommon/HiresTextures.cpp
parentd71f4168e94f1ced736461bd62ec39e46be3c78f (diff)
VideoCommon: Fix -Wformat warnings
Diffstat (limited to 'Source/Core/VideoCommon/HiresTextures.cpp')
-rw-r--r--Source/Core/VideoCommon/HiresTextures.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/Source/Core/VideoCommon/HiresTextures.cpp b/Source/Core/VideoCommon/HiresTextures.cpp
index 60b7630512..f5294d275a 100644
--- a/Source/Core/VideoCommon/HiresTextures.cpp
+++ b/Source/Core/VideoCommon/HiresTextures.cpp
@@ -284,7 +284,7 @@ std::string HiresTexture::GenBaseName(const u8* texture, size_t texture_size, co
std::string basename = s_format_prefix + StringFromFormat("%dx%d%s_%016" PRIx64, width, height,
has_mipmaps ? "_m" : "", tex_hash);
std::string tlutname = tlut_size ? StringFromFormat("_%016" PRIx64, tlut_hash) : "";
- std::string formatname = StringFromFormat("_%d", format);
+ std::string formatname = StringFromFormat("_%d", static_cast<int>(format));
std::string fullname = basename + tlutname + formatname;
for (int level = 0; level < 10 && convert; level++)