mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-25 23:29:44 -06:00
DSPRegisterView: Move private members below public API
This commit is contained in:
@ -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
|
||||||
|
Reference in New Issue
Block a user