From f73b6abdf53d82f123b23331ae40da2f35da725e Mon Sep 17 00:00:00 2001 From: Lioncash Date: Sat, 22 Nov 2014 17:25:14 -0500 Subject: [PATCH] DolphinWX: Fix patch removal --- Source/Core/DolphinWX/ISOProperties.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/DolphinWX/ISOProperties.cpp b/Source/Core/DolphinWX/ISOProperties.cpp index f2d0a501ae..c59a9b2d63 100644 --- a/Source/Core/DolphinWX/ISOProperties.cpp +++ b/Source/Core/DolphinWX/ISOProperties.cpp @@ -1328,7 +1328,7 @@ void CISOProperties::PatchButtonClicked(wxCommandEvent& event) break; case ID_REMOVEPATCH: onFrame.erase(onFrame.begin() + Patches->GetSelection()); - Patches->Delete(Cheats->GetSelection()); + Patches->Delete(Patches->GetSelection()); break; }