From a5676b4b8b009a1d9fcfa77ba51196bb2b5eb2c5 Mon Sep 17 00:00:00 2001 From: Andy Vandijck Date: Sun, 29 Jun 2025 13:08:22 +0200 Subject: [PATCH] Fix indent --- 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 373a61c0..39f27001 100644 --- a/src/wx/panel.cpp +++ b/src/wx/panel.cpp @@ -2585,7 +2585,7 @@ void SDLDrawingPanel::DrawArea() #else } else if ((OPTION(kSDLRenderer) == wxString("direct3d") && (systemColorDepth == 16)) { #endif - todraw_rgb565 = (uint16_t *)(todraw + srcPitch)) + todraw_rgb565 = (uint16_t *)(todraw + srcPitch)); for (int i = 0; i < (height * scale); i++) { for (int j = 0; j < (width * scale); j++) { todraw_rgb565[i + (j * (srcPitch / 2))] = ((todraw_rgb565[i + (j * (srcPitch / 2))] & 0x7FE0) << 1) | (todraw_rgb565[i + (j * (srcPitch / 2))] & 0x1F);