mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-01-11 00:29:11 +01:00
DSPRegisterView: Move private members below public API
This commit is contained in:
parent
f935485158
commit
66fd347d2e
@ -11,13 +11,6 @@
|
||||
|
||||
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:
|
||||
CDSPRegTable() = default;
|
||||
|
||||
@ -28,6 +21,13 @@ public:
|
||||
void SetValue(int row, int col, const wxString&) override;
|
||||
wxGridCellAttr* GetAttr(int, int, wxGridCellAttr::wxAttrKind) override;
|
||||
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
|
||||
|
Loading…
x
Reference in New Issue
Block a user