Skip to content

Commit

Permalink
Use spaces instead of tab
Browse files Browse the repository at this point in the history
  • Loading branch information
midwan committed Sep 12, 2024
1 parent 1bae331 commit 7139a66
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/sdl/sdl2graphics.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -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);
Expand Down

0 comments on commit 7139a66

Please sign in to comment.