diff options
Diffstat (limited to 'src/citra/citra.cpp')
| -rw-r--r-- | src/citra/citra.cpp | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp index 746cf083d..37ea97403 100644 --- a/src/citra/citra.cpp +++ b/src/citra/citra.cpp | |||
| @@ -22,17 +22,17 @@ | |||
| 22 | * http://code.google.com/p/gekko-gc-emu/ | 22 | * http://code.google.com/p/gekko-gc-emu/ |
| 23 | */ | 23 | */ |
| 24 | 24 | ||
| 25 | #include "common.h" | 25 | #include "common/common.h" |
| 26 | #include "log_manager.h" | 26 | #include "common/log_manager.h" |
| 27 | #include "file_util.h" | 27 | #include "common/file_util.h" |
| 28 | 28 | ||
| 29 | #include "system.h" | 29 | #include "core/system.h" |
| 30 | #include "core.h" | 30 | #include "core/core.h" |
| 31 | #include "loader.h" | 31 | #include "core/loader.h" |
| 32 | 32 | ||
| 33 | #include "emu_window/emu_window_glfw.h" | 33 | #include "citra/emu_window/emu_window_glfw.h" |
| 34 | 34 | ||
| 35 | #include "citra.h" | 35 | #include "citra/citra.h" |
| 36 | 36 | ||
| 37 | #define E_ERR -1 | 37 | #define E_ERR -1 |
| 38 | 38 | ||
| @@ -52,7 +52,7 @@ int __cdecl main(int argc, char **argv) { | |||
| 52 | 52 | ||
| 53 | System::Init(emu_window); | 53 | System::Init(emu_window); |
| 54 | 54 | ||
| 55 | std::string boot_filename = "homebrew.elf"; | 55 | std::string boot_filename = "C:\\Users\\eric\\Desktop\\3ds\\homebrew\\Mandelbrot3DS.elf"; |
| 56 | std::string error_str; | 56 | std::string error_str; |
| 57 | 57 | ||
| 58 | bool res = Loader::LoadFile(boot_filename, &error_str); | 58 | bool res = Loader::LoadFile(boot_filename, &error_str); |