summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/yuzu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r--src/yuzu_cmd/yuzu.cpp4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index e44a98311..9095cf27d 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -7,6 +7,8 @@
7#include <string> 7#include <string>
8#include <thread> 8#include <thread>
9 9
10#include <fmt/ostream.h>
11
10#include "common/common_paths.h" 12#include "common/common_paths.h"
11#include "common/logging/backend.h" 13#include "common/logging/backend.h"
12#include "common/logging/filter.h" 14#include "common/logging/filter.h"
@@ -194,7 +196,7 @@ int main(int argc, char** argv) {
194 "While attempting to load the ROM requested, an error occured. Please " 196 "While attempting to load the ROM requested, an error occured. Please "
195 "refer to the yuzu wiki for more information or the yuzu discord for " 197 "refer to the yuzu wiki for more information or the yuzu discord for "
196 "additional help.\n\nError Code: {:04X}-{:04X}\nError Description: {}", 198 "additional help.\n\nError Code: {:04X}-{:04X}\nError Description: {}",
197 loader_id, error_id, Loader::GetMessageForResultStatus(error_id)); 199 loader_id, error_id, static_cast<Loader::ResultStatus>(error_id));
198 } 200 }
199 } 201 }
200 202