summaryrefslogtreecommitdiff
path: root/Source/Core/DebuggerWX/Src/MemoryWindow.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Source/Core/DebuggerWX/Src/MemoryWindow.cpp')
-rw-r--r--Source/Core/DebuggerWX/Src/MemoryWindow.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/Source/Core/DebuggerWX/Src/MemoryWindow.cpp b/Source/Core/DebuggerWX/Src/MemoryWindow.cpp
index 8e4db3e26d..38fdbba659 100644
--- a/Source/Core/DebuggerWX/Src/MemoryWindow.cpp
+++ b/Source/Core/DebuggerWX/Src/MemoryWindow.cpp
@@ -400,9 +400,9 @@ void CMemoryWindow::onSearch(wxCommandEvent& event) {
if(k==size){
//Match was found
wxMessageBox(_T("A match was found. Placing viewer at the offset."));
- wxChar tmpstr[128]={0};
- wxSprintf(tmpstr,_T("%08x"),i);
- wxString tmpwx(tmpstr);
+ wxChar tmpwxstr[128]={0};
+ wxSprintf(tmpwxstr,_T("%08x"),i);
+ wxString tmpwx(tmpwxstr);
addrbox->SetValue(tmpwx);
//memview->curAddress=i;
//memview->Refresh();