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.cpp5
1 files changed, 1 insertions, 4 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index 5d9442646..129d8ca73 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -192,7 +192,7 @@ int main(int argc, char** argv) {
192 192
193 switch (load_result) { 193 switch (load_result) {
194 case Core::System::ResultStatus::ErrorGetLoader: 194 case Core::System::ResultStatus::ErrorGetLoader:
195 LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", filepath.c_str()); 195 LOG_CRITICAL(Frontend, "Failed to obtain loader for {}!", filepath);
196 return -1; 196 return -1;
197 case Core::System::ResultStatus::ErrorLoader: 197 case Core::System::ResultStatus::ErrorLoader:
198 LOG_CRITICAL(Frontend, "Failed to load ROM!"); 198 LOG_CRITICAL(Frontend, "Failed to load ROM!");
@@ -200,9 +200,6 @@ int main(int argc, char** argv) {
200 case Core::System::ResultStatus::ErrorNotInitialized: 200 case Core::System::ResultStatus::ErrorNotInitialized:
201 LOG_CRITICAL(Frontend, "CPUCore not initialized"); 201 LOG_CRITICAL(Frontend, "CPUCore not initialized");
202 return -1; 202 return -1;
203 case Core::System::ResultStatus::ErrorSystemMode:
204 LOG_CRITICAL(Frontend, "Failed to determine system mode!");
205 return -1;
206 case Core::System::ResultStatus::ErrorVideoCore: 203 case Core::System::ResultStatus::ErrorVideoCore:
207 LOG_CRITICAL(Frontend, "Failed to initialize VideoCore!"); 204 LOG_CRITICAL(Frontend, "Failed to initialize VideoCore!");
208 return -1; 205 return -1;