summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar bunnei2019-08-21 10:27:29 -0400
committerGravatar GitHub2019-08-21 10:27:29 -0400
commit74a7ce1df77ee835995c5b5007145ed95008eef2 (patch)
tree3fdf2e4fca699e6a095cc9d107a0d3c7fab8c563
parentMerge pull request #2747 from lioncash/audio (diff)
parentyuzu-tester/yuzu: Correct format string (diff)
downloadyuzu-74a7ce1df77ee835995c5b5007145ed95008eef2.tar.gz
yuzu-74a7ce1df77ee835995c5b5007145ed95008eef2.tar.xz
yuzu-74a7ce1df77ee835995c5b5007145ed95008eef2.zip
Merge pull request #2773 from lioncash/test-unused
yuzu-tester/yuzu: Remove unused variable
-rw-r--r--src/yuzu_tester/yuzu.cpp3
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) {
92 92
93 int option_index = 0; 93 int option_index = 0;
94 94
95 char* endarg;
96#ifdef _WIN32 95#ifdef _WIN32
97 int argc_w; 96 int argc_w;
98 auto argv_w = CommandLineToArgvW(GetCommandLineW(), &argc_w); 97 auto argv_w = CommandLineToArgvW(GetCommandLineW(), &argc_w);
@@ -226,7 +225,7 @@ int main(int argc, char** argv) {
226 225
227 switch (load_result) { 226 switch (load_result) {
228 case Core::System::ResultStatus::ErrorGetLoader: 227 case Core::System::ResultStatus::ErrorGetLoader:
229 LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", filepath.c_str()); 228 LOG_CRITICAL(Frontend, "Failed to obtain loader for {}!", filepath);
230 return -1; 229 return -1;
231 case Core::System::ResultStatus::ErrorLoader: 230 case Core::System::ResultStatus::ErrorLoader:
232 LOG_CRITICAL(Frontend, "Failed to load ROM!"); 231 LOG_CRITICAL(Frontend, "Failed to load ROM!");