mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-08-01 13:48:56 +00:00
Fixed a warning in the add memcheck from Watch window
This commit is contained in:
parent
de6dd847e7
commit
dbddc5f8e2
1 changed files with 1 additions and 1 deletions
|
@ -286,7 +286,7 @@ void CWatchView::OnPopupMenu(wxCommandEvent& event)
|
||||||
case IDM_ADDMEMCHECK:
|
case IDM_ADDMEMCHECK:
|
||||||
MemCheck.StartAddress = m_selectedAddress;
|
MemCheck.StartAddress = m_selectedAddress;
|
||||||
MemCheck.EndAddress = m_selectedAddress;
|
MemCheck.EndAddress = m_selectedAddress;
|
||||||
MemCheck.bRange = m_selectedAddress != m_selectedAddress;
|
MemCheck.bRange = false;
|
||||||
MemCheck.OnRead = true;
|
MemCheck.OnRead = true;
|
||||||
MemCheck.OnWrite = true;
|
MemCheck.OnWrite = true;
|
||||||
MemCheck.Log = true;
|
MemCheck.Log = true;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue