mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-23 06:09:50 -06:00
DolphinQt: Avoid ppcState global.
This commit is contained in:
@ -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;
|
||||
};
|
||||
|
Reference in New Issue
Block a user