summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Marcec <dmarcecguzman@gmail.com>2018-08-12 05:31:15 +0200
committerDavid Marcec <dmarcecguzman@gmail.com>2018-08-12 05:31:15 +0200
commita1fb8a331fde52279f18ae3fe3a57d7d88ff526d (patch)
treea41888b91e86b2914a84910028dceb5407784a8b
parentMerge pull request #1022 from bunnei/fix-splat (diff)
downloadyuzu-a1fb8a331fde52279f18ae3fe3a57d7d88ff526d.tar
yuzu-a1fb8a331fde52279f18ae3fe3a57d7d88ff526d.tar.gz
yuzu-a1fb8a331fde52279f18ae3fe3a57d7d88ff526d.tar.bz2
yuzu-a1fb8a331fde52279f18ae3fe3a57d7d88ff526d.tar.lz
yuzu-a1fb8a331fde52279f18ae3fe3a57d7d88ff526d.tar.xz
yuzu-a1fb8a331fde52279f18ae3fe3a57d7d88ff526d.tar.zst
yuzu-a1fb8a331fde52279f18ae3fe3a57d7d88ff526d.zip
-rw-r--r--src/core/loader/loader.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index 2f5bfc67c..1f2f31535 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -126,7 +126,7 @@ constexpr std::array<const char*, 36> RESULT_MESSAGES{
};
std::string GetMessageForResultStatus(ResultStatus status) {
- return GetMessageForResultStatus(static_cast<size_t>(status));
+ return GetMessageForResultStatus(static_cast<u16>(status));
}
std::string GetMessageForResultStatus(u16 status) {