From 92d556524bfacfad84fc3e5c7247d1d25506493c Mon Sep 17 00:00:00 2001 From: Peter Tissen Date: Mon, 28 Apr 2014 21:18:11 +0200 Subject: [PATCH] well let's hope Clang doesn't mind implicit unsigned int to u64 --- rpcs3/Gui/InterpreterDisAsm.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Gui/InterpreterDisAsm.cpp b/rpcs3/Gui/InterpreterDisAsm.cpp index 6dffef62cf..c208d303ce 100644 --- a/rpcs3/Gui/InterpreterDisAsm.cpp +++ b/rpcs3/Gui/InterpreterDisAsm.cpp @@ -455,7 +455,7 @@ void InterpreterDisAsmFrame::Show_Val(wxCommandEvent& WXUNUSED(event)) if(diag->ShowModal() == wxID_OK) { - u64 pc = CPU ? CPU->PC : 0x0; + unsigned long pc = CPU ? CPU->PC : 0x0; p_pc->GetValue().ToULong(&pc, 16); Emu.GetMarkedPoints().push_back(pc); remove_markedPC.push_back(Emu.GetMarkedPoints().size()-1);