diff options
author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-17 07:32:22 +0100 |
---|---|---|
committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-18 06:44:00 +0100 |
commit | 5f00fe905c8b5f9802a66e1cfd0f21873b769147 (patch) | |
tree | feb311173963598c92009be3bf77029d1c7f4b1f /src/citra_qt/main.h | |
parent | HID: move enable_accelerometer/gyroscope_count initialization into Init() (#2574) (diff) | |
download | yuzu-5f00fe905c8b5f9802a66e1cfd0f21873b769147.tar yuzu-5f00fe905c8b5f9802a66e1cfd0f21873b769147.tar.gz yuzu-5f00fe905c8b5f9802a66e1cfd0f21873b769147.tar.bz2 yuzu-5f00fe905c8b5f9802a66e1cfd0f21873b769147.tar.lz yuzu-5f00fe905c8b5f9802a66e1cfd0f21873b769147.tar.xz yuzu-5f00fe905c8b5f9802a66e1cfd0f21873b769147.tar.zst yuzu-5f00fe905c8b5f9802a66e1cfd0f21873b769147.zip |
Diffstat (limited to 'src/citra_qt/main.h')
-rw-r--r-- | src/citra_qt/main.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h index 102fd151d..7ae972937 100644 --- a/src/citra_qt/main.h +++ b/src/citra_qt/main.h @@ -79,8 +79,8 @@ private: * @returns Whether the system was properly initialized. */ bool InitializeSystem(u32 system_mode); - bool LoadROM(const std::string& filename); - void BootGame(const std::string& filename); + bool LoadROM(const QString& filename); + void BootGame(const QString& filename); void ShutdownGame(); /** @@ -94,7 +94,7 @@ private: * * @param filename the filename to store */ - void StoreRecentFile(const std::string& filename); + void StoreRecentFile(const QString& filename); /** * Updates the recent files menu. |