diff options
| author | skidau <skidau@gmail.com> | 2015-04-27 19:42:13 +1000 |
|---|---|---|
| committer | skidau <skidau@gmail.com> | 2015-04-27 19:42:13 +1000 |
| commit | 472e28144561cd2a48bf9ec6b6ac8fdbfbc37501 (patch) | |
| tree | 06f5cbeb7eb235cab2a0e2964ee9c28c141667a6 /Source/Core/DolphinWX/Debugger/WatchView.cpp | |
| parent | b457c61b3e5709c8ee85ac4606c6e6fed2821f93 (diff) | |
| parent | 132e1068ce7b2cc39d52facff9a33d0f3a582ae8 (diff) | |
Merge pull request #2316 from comex/fix-watch
Fix watchpoints ("memory breakpoints") with JIT
Diffstat (limited to 'Source/Core/DolphinWX/Debugger/WatchView.cpp')
| -rw-r--r-- | Source/Core/DolphinWX/Debugger/WatchView.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/Core/DolphinWX/Debugger/WatchView.cpp b/Source/Core/DolphinWX/Debugger/WatchView.cpp index a63676426a..293744d457 100644 --- a/Source/Core/DolphinWX/Debugger/WatchView.cpp +++ b/Source/Core/DolphinWX/Debugger/WatchView.cpp @@ -25,7 +25,7 @@ enum { - IDM_DELETEWATCH, + IDM_DELETEWATCH = 1, IDM_ADDMEMCHECK, IDM_VIEWMEMORY, }; @@ -98,7 +98,7 @@ static wxString GetValueByRowCol(int row, int col) case 0: return wxString::Format("%s", GetWatchName(row)); case 1: return wxString::Format("%08x", GetWatchAddr(row)); case 2: return wxString::Format("%08x", GetWatchValue(row)); - case 3: return wxString::Format("%lu", GetWatchValue(row)); + case 3: return wxString::Format("%u", GetWatchValue(row)); case 4: { u32 addr = GetWatchAddr(row); |
