diff options
author | bunnei <bunneidev@gmail.com> | 2019-08-21 10:27:29 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-08-21 10:27:29 -0400 |
commit | 74a7ce1df77ee835995c5b5007145ed95008eef2 (patch) | |
tree | 3fdf2e4fca699e6a095cc9d107a0d3c7fab8c563 /src/yuzu_tester/yuzu.cpp | |
parent | ef584f1a3a1dc8c10b6fb624265ae81fc1078c3a (diff) | |
parent | 6e11cfcdf0acad6bb337f1d60896cdbfd07c1cd2 (diff) |
Merge pull request #2773 from lioncash/test-unused
yuzu-tester/yuzu: Remove unused variable
Diffstat (limited to 'src/yuzu_tester/yuzu.cpp')
-rw-r--r-- | src/yuzu_tester/yuzu.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/yuzu_tester/yuzu.cpp b/src/yuzu_tester/yuzu.cpp index b589c3de3..0ee97aa54 100644 --- a/src/yuzu_tester/yuzu.cpp +++ b/src/yuzu_tester/yuzu.cpp @@ -92,7 +92,6 @@ int main(int argc, char** argv) { int option_index = 0; - char* endarg; #ifdef _WIN32 int argc_w; auto argv_w = CommandLineToArgvW(GetCommandLineW(), &argc_w); @@ -226,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!"); |