summaryrefslogtreecommitdiffstats
path: root/src/citra/citra.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-09 02:15:08 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-09 02:15:08 +0200
commitde0a034a849f5a1cbe2fed9ef2cc4095c56e672a (patch)
treec19b7a97fded29a04d7aca5702ab901820a663dc /src/citra/citra.cpp
parentgot rid of 'src' folders in each sub-project (diff)
downloadyuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.gz
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.bz2
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.lz
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.xz
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.tar.zst
yuzu-de0a034a849f5a1cbe2fed9ef2cc4095c56e672a.zip
Diffstat (limited to '')
-rw-r--r--src/citra/citra.cpp18
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 @@
* http://code.google.com/p/gekko-gc-emu/
*/
-#include "common.h"
-#include "log_manager.h"
-#include "file_util.h"
+#include "common/common.h"
+#include "common/log_manager.h"
+#include "common/file_util.h"
-#include "system.h"
-#include "core.h"
-#include "loader.h"
+#include "core/system.h"
+#include "core/core.h"
+#include "core/loader.h"
-#include "emu_window/emu_window_glfw.h"
+#include "citra/emu_window/emu_window_glfw.h"
-#include "citra.h"
+#include "citra/citra.h"
#define E_ERR -1
@@ -52,7 +52,7 @@ int __cdecl main(int argc, char **argv) {
System::Init(emu_window);
- std::string boot_filename = "homebrew.elf";
+ std::string boot_filename = "C:\\Users\\eric\\Desktop\\3ds\\homebrew\\Mandelbrot3DS.elf";
std::string error_str;
bool res = Loader::LoadFile(boot_filename, &error_str);