summaryrefslogtreecommitdiff
path: root/src/citra/citra.cpp
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2016-05-18 22:06:50 +0100
committerGravatar Emmanuel Gil Peyrot2016-05-21 17:09:59 +0100
commit314ce5e505aca066ad4d0385be46d7e8de9f6dfb (patch)
treee71b47815cf82006ea78b9820b5df5f99f8380b9 /src/citra/citra.cpp
parentLoader: Add a GetFileType method to get the type of a loaded file (diff)
downloadyuzu-314ce5e505aca066ad4d0385be46d7e8de9f6dfb.tar.gz
yuzu-314ce5e505aca066ad4d0385be46d7e8de9f6dfb.tar.xz
yuzu-314ce5e505aca066ad4d0385be46d7e8de9f6dfb.zip
CitraQt: Simplify the game list loader code
Diffstat (limited to 'src/citra/citra.cpp')
-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 aa3bf94ca..e01216734 100644
--- a/src/citra/citra.cpp
+++ b/src/citra/citra.cpp
@@ -114,7 +114,7 @@ int main(int argc, char **argv) {
114 System::Init(emu_window.get()); 114 System::Init(emu_window.get());
115 SCOPE_EXIT({ System::Shutdown(); }); 115 SCOPE_EXIT({ System::Shutdown(); });
116 116
117 std::unique_ptr<Loader::AppLoader> loader = Loader::GetFileLoader(boot_filename); 117 std::unique_ptr<Loader::AppLoader> loader = Loader::GetLoader(boot_filename);
118 if (!loader) { 118 if (!loader) {
119 LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", boot_filename.c_str()); 119 LOG_CRITICAL(Frontend, "Failed to obtain loader for %s!", boot_filename.c_str());
120 return -1; 120 return -1;