Switch to the Play / Record tab when fifo playback stops

This commit is contained in:
Pokechu22
2021-09-05 18:51:52 -07:00
parent d1cc539476
commit f4f4dbbc63
2 changed files with 12 additions and 6 deletions

View File

@ -12,6 +12,7 @@ class QDialogButtonBox;
class QLabel;
class QPushButton;
class QSpinBox;
class QTabWidget;
class FIFOAnalyzer;
class FIFOPlayerWindow : public QWidget
@ -64,6 +65,9 @@ private:
QCheckBox* m_early_memory_updates;
QDialogButtonBox* m_button_box;
QWidget* m_main_widget;
QTabWidget* m_tab_widget;
FIFOAnalyzer* m_analyzer;
Core::State m_emu_state = Core::State::Uninitialized;
};