diff options
author | archshift <gh@archshift.com> | 2015-08-31 18:30:06 -0700 |
---|---|---|
committer | archshift <gh@archshift.com> | 2015-10-01 19:39:14 -0700 |
commit | afd06675fa2b93c81f0f868443c03cc3ad8bee07 (patch) | |
tree | e13374b6307d1d0e908b26222c1fc6d4c9ac67d2 /src/citra_qt/main.h | |
parent | 7134a17fc6cb7ab8ae46dae04f005bb72e0af88e (diff) |
Don't show render window until a game is started
Diffstat (limited to 'src/citra_qt/main.h')
-rw-r--r-- | src/citra_qt/main.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h index 32523fded..e99501cab 100644 --- a/src/citra_qt/main.h +++ b/src/citra_qt/main.h @@ -102,6 +102,8 @@ private: GRenderWindow* render_window; + // Whether emulation is currently running in Citra. + bool emulation_running = false; std::unique_ptr<EmuThread> emu_thread; ProfilerWidget* profilerWidget; |