summaryrefslogtreecommitdiffstats
path: root/src/citra/citra.cpp
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-06-19 00:58:09 +0200
committerbunnei <ericbunnie@gmail.com>2014-06-25 01:29:58 +0200
commit7889cafc76ac99b8509fa3cd1558a09f8a7e5f91 (patch)
treee6ffea9ec1c334bfca13404c47a2191fd281554c /src/citra/citra.cpp
parentNCCH: Changed decompression to load .code directly into memory rather than an intermediate buffer. (diff)
downloadyuzu-7889cafc76ac99b8509fa3cd1558a09f8a7e5f91.tar
yuzu-7889cafc76ac99b8509fa3cd1558a09f8a7e5f91.tar.gz
yuzu-7889cafc76ac99b8509fa3cd1558a09f8a7e5f91.tar.bz2
yuzu-7889cafc76ac99b8509fa3cd1558a09f8a7e5f91.tar.lz
yuzu-7889cafc76ac99b8509fa3cd1558a09f8a7e5f91.tar.xz
yuzu-7889cafc76ac99b8509fa3cd1558a09f8a7e5f91.tar.zst
yuzu-7889cafc76ac99b8509fa3cd1558a09f8a7e5f91.zip
Diffstat (limited to '')
-rw-r--r--src/citra/citra.cpp23
1 files changed, 8 insertions, 15 deletions
diff --git a/src/citra/citra.cpp b/src/citra/citra.cpp
index f6bb10f29..036af3735 100644
--- a/src/citra/citra.cpp
+++ b/src/citra/citra.cpp
@@ -16,28 +16,21 @@
/// Application entry point
int __cdecl main(int argc, char **argv) {
- std::string program_dir = File::GetCurrentDir();
-
LogManager::Init();
- EmuWindow_GLFW* emu_window = new EmuWindow_GLFW;
-
- System::Init(emu_window);
-
- std::string boot_filename;
-
if (argc < 2) {
ERROR_LOG(BOOT, "Failed to load ROM: No ROM specified");
+ return -1;
}
- else {
- boot_filename = argv[1];
- }
- std::string error_str;
- bool res = Loader::LoadFile(boot_filename, &error_str);
+ std::string boot_filename = argv[1];
+ EmuWindow_GLFW* emu_window = new EmuWindow_GLFW;
+
+ System::Init(emu_window);
- if (!res) {
- ERROR_LOG(BOOT, "Failed to load ROM: %s", error_str.c_str());
+ if (Loader::ResultStatus::Success != Loader::LoadFile(boot_filename)) {
+ ERROR_LOG(BOOT, "Failed to load ROM!");
+ return -1;
}
Core::RunLoop();