summaryrefslogtreecommitdiff
path: root/frontends/sdl
diff options
context:
space:
mode:
Diffstat (limited to 'frontends/sdl')
-rw-r--r--frontends/sdl/cetris_sdl.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/frontends/sdl/cetris_sdl.c b/frontends/sdl/cetris_sdl.c
index 35165c7..89c1f47 100644
--- a/frontends/sdl/cetris_sdl.c
+++ b/frontends/sdl/cetris_sdl.c
@@ -211,7 +211,7 @@ void draw_block(cetris_ui *ui, int x, int y, int width, int height, int mino, in
} else {
SDL_Rect b = {x + 1, y + 1, width - 1, height - 1};
SDL_Color c = mino_colors[mino];
- //SDL_SetRenderDrawColor(ui->render, c.r, c.g, c.b, alpha);
+ SDL_SetRenderDrawColor(ui->render, c.r, c.g, c.b, alpha);
SDL_RenderFillRect(ui->render, &b);
SDL_RenderDrawRect(ui->render, &b);
SDL_SetRenderDrawColor(ui->render, off.r, off.g, off.b, off.a);