Fix indent

This commit is contained in:
Andy Vandijck 2025-06-29 13:08:22 +02:00
parent 4fa72ce721
commit a5676b4b8b
1 changed files with 1 additions and 1 deletions

View File

@ -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);