summaryrefslogtreecommitdiff
path: root/src/yuzu_cmd/yuzu.cpp
diff options
context:
space:
mode:
authorGravatar Lioncash2019-05-28 22:10:51 -0400
committerGravatar Lioncash2019-05-28 22:28:46 -0400
commitc6f05b586fa1c31e0415a5368a98c9d61cd79232 (patch)
treeec0066bbad72400d6a6ef0ff2686b601dd062eef /src/yuzu_cmd/yuzu.cpp
parentcore/loader: Remove LoadKernelSystemMode (diff)
downloadyuzu-c6f05b586fa1c31e0415a5368a98c9d61cd79232.tar.gz
yuzu-c6f05b586fa1c31e0415a5368a98c9d61cd79232.tar.xz
yuzu-c6f05b586fa1c31e0415a5368a98c9d61cd79232.zip
yuzu_cmd/yuzu: Correct formatting specifier
Amends the formatting specifier to obey libfmt. Prevents the application from terminating due to a formatting issue in the error case.
Diffstat (limited to 'src/yuzu_cmd/yuzu.cpp')
-rw-r--r--src/yuzu_cmd/yuzu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_cmd/yuzu.cpp b/src/yuzu_cmd/yuzu.cpp
index 3cddadd37..05f28ce8d 100644
--- a/src/yuzu_cmd/yuzu.cpp
+++ b/src/yuzu_cmd/yuzu.cpp
@@ -191,7 +191,7 @@ int main(int argc, char** argv) {
191 191
192 switch (load_result) { 192 switch (load_result) {
193 case Core::System::ResultStatus::ErrorGetLoader: 193 case Core::System::ResultStatus::ErrorGetLoader:
194 LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", filepath.c_str()); 194 LOG_CRITICAL(Frontend, "Failed to obtain loader for {}!", filepath);
195 return -1; 195 return -1;
196 case Core::System::ResultStatus::ErrorLoader: 196 case Core::System::ResultStatus::ErrorLoader:
197 LOG_CRITICAL(Frontend, "Failed to load ROM!"); 197 LOG_CRITICAL(Frontend, "Failed to load ROM!");