From 7139a66d59b6e4513ca00654e2c68838133223ad Mon Sep 17 00:00:00 2001 From: Dimitris Panokostas Date: Thu, 12 Sep 2024 17:41:57 +0200 Subject: [PATCH] Use spaces instead of tab --- src/sdl/sdl2graphics.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/sdl/sdl2graphics.cpp b/src/sdl/sdl2graphics.cpp index 499bddb..f8fdcca 100644 --- a/src/sdl/sdl2graphics.cpp +++ b/src/sdl/sdl2graphics.cpp @@ -385,7 +385,7 @@ namespace gcn const int x1 = rectangle.x; const int x2 = rectangle.x + rectangle.width - 1; const int y1 = rectangle.y; - const int y2 = rectangle.y + rectangle.height - 1; + const int y2 = rectangle.y + rectangle.height - 1; drawHLine(x1, y1, x2); drawHLine(x1, y2, x2);