From 1ace31216d17bd5ab28c060de6e829d85a574614 Mon Sep 17 00:00:00 2001 From: zilmar Date: Mon, 9 Nov 2015 07:48:46 +1100 Subject: [PATCH] [Projet64] remove typecasting in Debugger - View Memory.cpp --- .../N64 System/Debugger/Debugger - View Memory.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Source/Project64/N64 System/Debugger/Debugger - View Memory.cpp b/Source/Project64/N64 System/Debugger/Debugger - View Memory.cpp index 87c217812..8c577ab73 100644 --- a/Source/Project64/N64 System/Debugger/Debugger - View Memory.cpp +++ b/Source/Project64/N64 System/Debugger/Debugger - View Memory.cpp @@ -402,14 +402,14 @@ void CDebugMemoryView::RefreshMemory(bool ResetCompare) if (m_DataVAddrr) { - if (!g_MMU->LW_VAddr(m_DataStartLoc & ~3, (uint32_t &)word.UW)) + if (!g_MMU->LW_VAddr(m_DataStartLoc & ~3, word.UW)) { ValidData = false; } } else { - if (!g_MMU->LW_PAddr(m_DataStartLoc & ~3, (uint32_t &)word.UW)) + if (!g_MMU->LW_PAddr(m_DataStartLoc & ~3, word.UW)) { ValidData = false; } @@ -438,14 +438,14 @@ void CDebugMemoryView::RefreshMemory(bool ResetCompare) if (m_DataVAddrr) { - if (!g_MMU->LW_VAddr(Pos, (uint32_t &)word.UW)) + if (!g_MMU->LW_VAddr(Pos, word.UW)) { ValidData = false; } } else { - if (!g_MMU->LW_PAddr(Pos, (uint32_t &)word.UW)) + if (!g_MMU->LW_PAddr(Pos, word.UW)) { ValidData = false; }