diff --git a/Source/Project64/N64 System/Debugger/Debugger - Memory Dump.cpp b/Source/Project64/N64 System/Debugger/Debugger - Memory Dump.cpp index 3821fba42..593842bbe 100644 --- a/Source/Project64/N64 System/Debugger/Debugger - Memory Dump.cpp +++ b/Source/Project64/N64 System/Debugger/Debugger - Memory Dump.cpp @@ -32,7 +32,7 @@ LRESULT CDumpMemory::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lPa return TRUE; } -LRESULT CDumpMemory::OnClicked(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled) +LRESULT CDumpMemory::OnClicked(WORD /*wNotifyCode*/, WORD wID, HWND /*hWndCtl*/, BOOL& /*bHandled*/) { switch(wID) { @@ -290,7 +290,7 @@ LRESULT CDumpMemory::OnClicked(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& b // return true; //} -bool CDumpMemory::DumpMemory ( LPCSTR FileName,DumpFormat Format, DWORD StartPC, DWORD EndPC, DWORD DumpPC ) +bool CDumpMemory::DumpMemory ( LPCSTR FileName,DumpFormat Format, DWORD StartPC, DWORD EndPC, DWORD /*DumpPC*/ ) { switch (Format) { diff --git a/Source/Project64/N64 System/Debugger/Debugger - Memory Search.cpp b/Source/Project64/N64 System/Debugger/Debugger - Memory Search.cpp index 7e6e9bdf1..6fa004319 100644 --- a/Source/Project64/N64 System/Debugger/Debugger - Memory Search.cpp +++ b/Source/Project64/N64 System/Debugger/Debugger - Memory Search.cpp @@ -12,7 +12,7 @@ CDebugMemorySearch::~CDebugMemorySearch() void CDebugMemorySearch::AddAlignmentOptions (CComboBox & ctrl) { - int Index = ctrl.AddString("32 bits (aligned)"); + /*int Index =*/ ctrl.AddString("32 bits (aligned)"); _Notify->BreakPoint(__FILE__,__LINE__); #ifdef tofix ctrl.SetItemData(Index,_32Bit); @@ -61,7 +61,7 @@ LRESULT CDebugMemorySearch::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARA return TRUE; } -LRESULT CDebugMemorySearch::OnClicked(WORD wNotifyCode, WORD wID, HWND hWndCtl, BOOL& bHandled) +LRESULT CDebugMemorySearch::OnClicked(WORD /*wNotifyCode*/, WORD wID, HWND hWndCtl, BOOL& /*bHandled*/) { switch(wID) { @@ -152,7 +152,7 @@ LRESULT CDebugMemorySearch::OnClicked(WORD wNotifyCode, WORD wID, HWND hWndCtl, return FALSE; } -LRESULT CDebugMemorySearch::OnResultRClick ( LPNMHDR lpnmh ) +LRESULT CDebugMemorySearch::OnResultRClick ( LPNMHDR /*lpnmh*/ ) { LONG iItem = m_SearchResults.GetNextItem(-1, LVNI_SELECTED); if (iItem == -1) @@ -472,7 +472,7 @@ void CDebugMemorySearch::Reset ( void ) FixUnknownOptions(true); } -void CDebugMemorySearch::FixUnknownOptions ( bool Reset ) +void CDebugMemorySearch::FixUnknownOptions ( bool /*Reset*/ ) { /* CComboBox & cb = m_UnknownOptions ; diff --git a/Source/Project64/N64 System/Debugger/Debugger - TLB.cpp b/Source/Project64/N64 System/Debugger/Debugger - TLB.cpp index 177089495..ad0d0ef08 100644 --- a/Source/Project64/N64 System/Debugger/Debugger - TLB.cpp +++ b/Source/Project64/N64 System/Debugger/Debugger - TLB.cpp @@ -73,7 +73,7 @@ LRESULT CDebugTlb::OnInitDialog(UINT /*uMsg*/, WPARAM /*wParam*/, LPARAM /*lPara return TRUE; } -LRESULT CDebugTlb::OnClicked (WORD wNotifyCode, WORD wID, HWND , BOOL& bHandled) +LRESULT CDebugTlb::OnClicked (WORD /*wNotifyCode*/, WORD wID, HWND , BOOL& /*bHandled*/) { switch(wID) {