summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar Lioncash2019-07-29 20:55:45 -0400
committerGravatar Lioncash2019-07-29 20:55:48 -0400
commit6e11cfcdf0acad6bb337f1d60896cdbfd07c1cd2 (patch)
treee9a9b0c8db9a40dd7152bc50ddee38784e317527 /src
parentyuzu-tester/yuzu: Remove unused variable (diff)
downloadyuzu-6e11cfcdf0acad6bb337f1d60896cdbfd07c1cd2.tar.gz
yuzu-6e11cfcdf0acad6bb337f1d60896cdbfd07c1cd2.tar.xz
yuzu-6e11cfcdf0acad6bb337f1d60896cdbfd07c1cd2.zip
yuzu-tester/yuzu: Correct format string
Prevents an invalid formatting exception from being thrown.
Diffstat (limited to 'src')
-rw-r--r--src/yuzu_tester/yuzu.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp
index 713d7770b..0ee97aa54 100644
--- a/src/yuzu_tester/yuzu.cpp
+++ b/src/yuzu_tester/yuzu.cpp
@@ -225,7 +225,7 @@ int main(int argc, char** argv) {
225 225
226 switch (load_result) { 226 switch (load_result) {
227 case Core::System::ResultStatus::ErrorGetLoader: 227 case Core::System::ResultStatus::ErrorGetLoader:
228 LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", filepath.c_str()); 228 LOG_CRITICAL(Frontend, "Failed to obtain loader for {}!", filepath);
229 return -1; 229 return -1;
230 case Core::System::ResultStatus::ErrorLoader: 230 case Core::System::ResultStatus::ErrorLoader:
231 LOG_CRITICAL(Frontend, "Failed to load ROM!"); 231 LOG_CRITICAL(Frontend, "Failed to load ROM!");