diff options
author | David Marcec <dmarcecguzman@gmail.com> | 2018-08-12 05:31:15 +0200 |
---|---|---|
committer | David Marcec <dmarcecguzman@gmail.com> | 2018-08-12 05:31:15 +0200 |
commit | a1fb8a331fde52279f18ae3fe3a57d7d88ff526d (patch) | |
tree | a41888b91e86b2914a84910028dceb5407784a8b /src/core/loader/loader.cpp | |
parent | Merge pull request #1022 from bunnei/fix-splat (diff) | |
download | yuzu-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 |
Diffstat (limited to 'src/core/loader/loader.cpp')
-rw-r--r-- | src/core/loader/loader.cpp | 2 |
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) { |