summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorGravatar archshift2014-05-01 15:13:06 -0700
committerGravatar archshift2014-05-01 15:13:06 -0700
commiteec40f8f6f5fea63640721027408887291e19f61 (patch)
treec3448cb62bd3a5d7ed55ecfc43681f808a0f67b4 /src
parentadded virtual address conversion for firmware FW0B (diff)
downloadyuzu-eec40f8f6f5fea63640721027408887291e19f61.tar.gz
yuzu-eec40f8f6f5fea63640721027408887291e19f61.tar.xz
yuzu-eec40f8f6f5fea63640721027408887291e19f61.zip
Use runtime arguments to specify boot filename.
Diffstat (limited to 'src')
-rw-r--r--src/citra/citra.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp
index d55b97393..00bab3203 100644
--- a/src/citra/citra.cpp
+++ b/src/citra/citra.cpp
@@ -24,7 +24,7 @@ int __cdecl main(int argc, char **argv) {
24 24
25 System::Init(emu_window); 25 System::Init(emu_window);
26 26
27 std::string boot_filename = "homebrew.elf"; 27 std::string boot_filename = argv[1];
28 std::string error_str; 28 std::string error_str;
29 29
30 bool res = Loader::LoadFile(boot_filename, &error_str); 30 bool res = Loader::LoadFile(boot_filename, &error_str);