summaryrefslogtreecommitdiff
path: root/src/core/loader/loader.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2018-08-15 18:25:57 -0400
committerGravatar GitHub2018-08-15 18:25:57 -0400
commit69236e5affdb8603b5e61fae2c0acb5853129956 (patch)
tree334d2ea7d8997163640af2d0d2e25c841597241a /src/core/loader/loader.cpp
parentMerge pull request #1051 from B3n30/UnscheduleEventThreadsafe (diff)
parentloader: Make ResultStatus directly compatible with fmt (diff)
downloadyuzu-69236e5affdb8603b5e61fae2c0acb5853129956.tar.gz
yuzu-69236e5affdb8603b5e61fae2c0acb5853129956.tar.xz
yuzu-69236e5affdb8603b5e61fae2c0acb5853129956.zip
Merge pull request #1079 from lioncash/fmt
loader: Make ResultStatus directly compatible with fmt
Diffstat (limited to 'src/core/loader/loader.cpp')
-rw-r--r--src/core/loader/loader.cpp12
1 files changed, 4 insertions, 8 deletions
diff --git a/src/core/loader/loader.cpp b/src/core/loader/loader.cpp
index b143f043c..5e07a3f10 100644
--- a/src/core/loader/loader.cpp
+++ b/src/core/loader/loader.cpp
@@ -3,6 +3,7 @@
3// Refer to the license.txt file included. 3// Refer to the license.txt file included.
4 4
5#include <memory> 5#include <memory>
6#include <ostream>
6#include <string> 7#include <string>
7#include "common/logging/log.h" 8#include "common/logging/log.h"
8#include "common/string_util.h" 9#include "common/string_util.h"
@@ -119,14 +120,9 @@ constexpr std::array<const char*, 36> RESULT_MESSAGES{
119 "There is no control data available.", 120 "There is no control data available.",
120}; 121};
121 122
122std::string GetMessageForResultStatus(ResultStatus status) { 123std::ostream& operator<<(std::ostream& os, ResultStatus status) {
123 return GetMessageForResultStatus(static_cast<u16>(status)); 124 os << RESULT_MESSAGES.at(static_cast<size_t>(status));
124} 125 return os;
125
126std::string GetMessageForResultStatus(u16 status) {
127 if (status >= 36)
128 return "";
129 return RESULT_MESSAGES[status];
130} 126}
131 127
132/** 128/**