mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-05 07:39:17 +00:00
DSPRegisterView: Move private members below public API
This commit is contained in:
parent
f935485158
commit
66fd347d2e
1 changed files with 7 additions and 7 deletions
|
@ -11,13 +11,6 @@
|
||||||
|
|
||||||
class CDSPRegTable : public wxGridTableBase
|
class CDSPRegTable : public wxGridTableBase
|
||||||
{
|
{
|
||||||
private:
|
|
||||||
u64 m_CachedCounter = 0;
|
|
||||||
std::array<u16, 32> m_CachedRegs{};
|
|
||||||
std::array<bool, 32> m_CachedRegHasChanged{};
|
|
||||||
|
|
||||||
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
|
||||||
|
|
||||||
public:
|
public:
|
||||||
CDSPRegTable() = default;
|
CDSPRegTable() = default;
|
||||||
|
|
||||||
|
@ -28,6 +21,13 @@ public:
|
||||||
void SetValue(int row, int col, const wxString&) override;
|
void SetValue(int row, int col, const wxString&) override;
|
||||||
wxGridCellAttr* GetAttr(int, int, wxGridCellAttr::wxAttrKind) override;
|
wxGridCellAttr* GetAttr(int, int, wxGridCellAttr::wxAttrKind) override;
|
||||||
void UpdateCachedRegs();
|
void UpdateCachedRegs();
|
||||||
|
|
||||||
|
private:
|
||||||
|
u64 m_CachedCounter = 0;
|
||||||
|
std::array<u16, 32> m_CachedRegs{};
|
||||||
|
std::array<bool, 32> m_CachedRegHasChanged{};
|
||||||
|
|
||||||
|
DECLARE_NO_COPY_CLASS(CDSPRegTable);
|
||||||
};
|
};
|
||||||
|
|
||||||
class DSPRegisterView : public wxGrid
|
class DSPRegisterView : public wxGrid
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue