summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd
diff options
context:
space:
mode:
authorGravatar Zach Hilman2019-06-05 15:57:48 -0400
committerGravatar GitHub2019-06-05 15:57:48 -0400
commit799302bc9d6edade951cf7746314d96d440c823c (patch)
tree0fd074d6ab32ef2b2590bdd0c21302784976d653 /src/yuzu_cmd
parentMerge pull request #2545 from lioncash/timing (diff)
parentcore/core: Remove unnecessary includes (diff)
downloadyuzu-799302bc9d6edade951cf7746314d96d440c823c.tar.gz
yuzu-799302bc9d6edade951cf7746314d96d440c823c.tar.xz
yuzu-799302bc9d6edade951cf7746314d96d440c823c.zip
Merge pull request #2526 from lioncash/global
core/telemetry_session: Remove usages of the global system accessor
Diffstat (limited to 'src/yuzu_cmd')
-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;