diff options
Diffstat (limited to '')
| -rw-r--r-- | src/citra_qt/bootmanager.cpp | 8 |
1 files changed, 5 insertions, 3 deletions
diff --git a/src/citra_qt/bootmanager.cpp b/src/citra_qt/bootmanager.cpp index a162e6dfe..b0aa1e561 100644 --- a/src/citra_qt/bootmanager.cpp +++ b/src/citra_qt/bootmanager.cpp | |||
| @@ -17,13 +17,15 @@ | |||
| 17 | #define APP_TITLE APP_NAME " " APP_VERSION | 17 | #define APP_TITLE APP_NAME " " APP_VERSION |
| 18 | #define COPYRIGHT "Copyright (C) 2013-2014 Citra Team" | 18 | #define COPYRIGHT "Copyright (C) 2013-2014 Citra Team" |
| 19 | 19 | ||
| 20 | EmuThread::EmuThread(GRenderWindow* render_window) : exec_cpu_step(false), cpu_running(false), render_window(render_window) | 20 | EmuThread::EmuThread(GRenderWindow* render_window) : |
| 21 | exec_cpu_step(false), cpu_running(false), | ||
| 22 | render_window(render_window), filename("") | ||
| 21 | { | 23 | { |
| 22 | } | 24 | } |
| 23 | 25 | ||
| 24 | void EmuThread::SetFilename(const char* filename) | 26 | void EmuThread::SetFilename(std::string filename) |
| 25 | { | 27 | { |
| 26 | strcpy(this->filename, filename); | 28 | this->filename = filename; |
| 27 | } | 29 | } |
| 28 | 30 | ||
| 29 | void EmuThread::run() | 31 | void EmuThread::run() |