summaryrefslogtreecommitdiff
path: root/src/citra_qt/main.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/citra_qt/main.h')
-rw-r--r--src/citra_qt/main.h7
1 files changed, 6 insertions, 1 deletions
diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h
index 82eb90aae..f87178227 100644
--- a/src/citra_qt/main.h
+++ b/src/citra_qt/main.h
@@ -60,7 +60,12 @@ signals:
60 void EmulationStopping(); 60 void EmulationStopping();
61 61
62private: 62private:
63 bool InitializeSystem(); 63 /**
64 * Initializes the emulation system.
65 * @param system_mode The system mode with which to intialize the kernel.
66 * @returns Whether the system was properly initialized.
67 */
68 bool InitializeSystem(u32 system_mode);
64 bool LoadROM(const std::string& filename); 69 bool LoadROM(const std::string& filename);
65 void BootGame(const std::string& filename); 70 void BootGame(const std::string& filename);
66 void ShutdownGame(); 71 void ShutdownGame();