diff options
author | Lioncash <mathew1800@gmail.com> | 2019-07-29 20:55:45 -0400 |
---|---|---|
committer | Lioncash <mathew1800@gmail.com> | 2019-07-29 20:55:48 -0400 |
commit | 6e11cfcdf0acad6bb337f1d60896cdbfd07c1cd2 (patch) | |
tree | e9a9b0c8db9a40dd7152bc50ddee38784e317527 | |
parent | a0ee10b114254c835cefb363a5cfe488dca62fc0 (diff) |
yuzu-tester/yuzu: Correct format string
Prevents an invalid formatting exception from being thrown.
-rw-r--r-- | src/yuzu_tester/yuzu.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp index 713d7770b4..0ee97aa54a 100644 --- a/src/yuzu_tester/yuzu.cpp +++ b/src/yuzu_tester/yuzu.cpp @@ -225,7 +225,7 @@ int main(int argc, char** argv) { switch (load_result) { case Core::System::ResultStatus::ErrorGetLoader: - LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", filepath.c_str()); + LOG_CRITICAL(Frontend, "Failed to obtain loader for {}!", filepath); return -1; case Core::System::ResultStatus::ErrorLoader: LOG_CRITICAL(Frontend, "Failed to load ROM!"); |