mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-31 13:18:50 +00:00
DolphinQt: Avoid ppcState global.
This commit is contained in:
parent
192d8b6e40
commit
2d1f661118
6 changed files with 143 additions and 127 deletions
|
@ -13,6 +13,10 @@
|
|||
class QTableWidget;
|
||||
class QCloseEvent;
|
||||
class QShowEvent;
|
||||
namespace Core
|
||||
{
|
||||
class System;
|
||||
}
|
||||
|
||||
class RegisterWidget : public QDockWidget
|
||||
{
|
||||
|
@ -49,6 +53,8 @@ private:
|
|||
void AutoStep(const std::string& reg) const;
|
||||
void Update();
|
||||
|
||||
Core::System& m_system;
|
||||
|
||||
QTableWidget* m_table;
|
||||
bool m_updating = false;
|
||||
};
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue