summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorGravatar archshift2014-05-04 15:47:42 -0700
committerGravatar archshift2014-05-04 15:47:42 -0700
commitbd316ca0c0e244baf8f77b635eae85f744a62cf1 (patch)
tree419ef0082c522a1cfd5ba4e24440dbaa71d4a8c4
parentCheck arg count before attempting to access it. (diff)
downloadyuzu-bd316ca0c0e244baf8f77b635eae85f744a62cf1.tar.gz
yuzu-bd316ca0c0e244baf8f77b635eae85f744a62cf1.tar.xz
yuzu-bd316ca0c0e244baf8f77b635eae85f744a62cf1.zip
Fixed indents
-rw-r--r--src/citra/citra.cpp14
1 files changed, 7 insertions, 7 deletions
diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp
index d8325772e..80896505f 100644
--- a/src/citra/citra.cpp
+++ b/src/citra/citra.cpp
@@ -25,13 +25,13 @@ int __cdecl main(int argc, char **argv) {
25 System::Init(emu_window); 25 System::Init(emu_window);
26 26
27 std::string boot_filename; 27 std::string boot_filename;
28 28
29 if (argc < 2) { 29 if (argc < 2) {
30 ERROR_LOG(BOOT, "Failed to load ROM: No ROM specified"); 30 ERROR_LOG(BOOT, "Failed to load ROM: No ROM specified");
31 } 31 }
32 else { 32 else {
33 boot_filename = argv[1]; 33 boot_filename = argv[1];
34 } 34 }
35 std::string error_str; 35 std::string error_str;
36 36
37 bool res = Loader::LoadFile(boot_filename, &error_str); 37 bool res = Loader::LoadFile(boot_filename, &error_str);