diff options
| author | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-18 12:09:14 -0800 |
|---|---|---|
| committer | Yuri Kunde Schlesner <yuriks@yuriks.net> | 2017-02-26 17:22:02 -0800 |
| commit | 1b28b2668274dc266a7f523760a264c1af1044de (patch) | |
| tree | 3356dc8afb59bb513f70643a6b480212273fc32a /src/citra_qt/main.h | |
| parent | 441f8b5a4b16dda4164ef35ce3fccfb5d3eeb39c (diff) | |
Qt: Add (empty) status bar
Diffstat (limited to 'src/citra_qt/main.h')
| -rw-r--r-- | src/citra_qt/main.h | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/src/citra_qt/main.h b/src/citra_qt/main.h index 87637b92b..3cbf4ea99 100644 --- a/src/citra_qt/main.h +++ b/src/citra_qt/main.h @@ -132,12 +132,18 @@ private: GRenderWindow* render_window; GameList* game_list; + // Status bar elements + QLabel* emu_speed_label = nullptr; + QLabel* game_fps_label = nullptr; + QLabel* emu_frametime_label = nullptr; + std::unique_ptr<Config> config; // Whether emulation is currently running in Citra. bool emulation_running = false; std::unique_ptr<EmuThread> emu_thread; + // Debugger panes ProfilerWidget* profilerWidget; MicroProfileDialog* microProfileDialog; DisassemblerWidget* disasmWidget; |
