mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-11 15:09:00 +01:00
Merge pull request #653 from lioncash/internal-state
DolphinWX: Move some public variables to be private in CodeView
This commit is contained in:
commit
c189a3491b
@ -45,13 +45,6 @@ public:
|
|||||||
return m_selection;
|
return m_selection;
|
||||||
}
|
}
|
||||||
|
|
||||||
struct BlrStruct // for IDM_INSERTBLR
|
|
||||||
{
|
|
||||||
u32 address;
|
|
||||||
u32 oldValue;
|
|
||||||
};
|
|
||||||
std::vector<BlrStruct> m_blrList;
|
|
||||||
|
|
||||||
void Center(u32 addr)
|
void Center(u32 addr)
|
||||||
{
|
{
|
||||||
m_curAddress = addr;
|
m_curAddress = addr;
|
||||||
@ -79,6 +72,12 @@ private:
|
|||||||
|
|
||||||
void LineTo(wxPaintDC &dc, int x, int y);
|
void LineTo(wxPaintDC &dc, int x, int y);
|
||||||
|
|
||||||
|
struct BlrStruct // for IDM_INSERTBLR
|
||||||
|
{
|
||||||
|
u32 address;
|
||||||
|
u32 oldValue;
|
||||||
|
};
|
||||||
|
std::vector<BlrStruct> m_blrList;
|
||||||
|
|
||||||
DebugInterface* m_debugger;
|
DebugInterface* m_debugger;
|
||||||
SymbolDB* m_symbol_db;
|
SymbolDB* m_symbol_db;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user