From c7abd4e74ecf4de5398780e5bcb6e03fde8e5a42 Mon Sep 17 00:00:00 2001 From: Andy Vandijck Date: Sun, 29 Jun 2025 14:05:30 +0200 Subject: [PATCH] Fix double )) --- src/wx/panel.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/wx/panel.cpp b/src/wx/panel.cpp index 0f25593b..598c9339 100644 --- a/src/wx/panel.cpp +++ b/src/wx/panel.cpp @@ -2571,7 +2571,7 @@ void SDLDrawingPanel::DrawArea() #else if ((OPTION(kSDLRenderer) == wxString("direct3d") && (systemColorDepth == 32)) { #endif - todraw_argb = (uint32_t *)(todraw + srcPitch)); + todraw_argb = (uint32_t *)(todraw + srcPitch); for (int i = 0; i < (height * scale); i++) { for (int j = 0; j < (width * scale); j++) {