aboutsummaryrefslogtreecommitdiff
path: root/plot.c
diff options
context:
space:
mode:
authorDavid Phillips <david@sighup.nz>2019-04-10 22:00:56 +1200
committerDavid Phillips <david@sighup.nz>2019-04-10 22:00:56 +1200
commitb1a04a73a325fd48831495ef7489cf3330f2859a (patch)
treefb197cc1c60abe406521d0ebc82d653913ca818d /plot.c
parent8d98f9bf13085c3a36170c2a2e541ee9a58b520a (diff)
downloadtetris-b1a04a73a325fd48831495ef7489cf3330f2859a.tar.xz
Change colours to gruvbox themeHEADmaster
Diffstat (limited to 'plot.c')
-rw-r--r--plot.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/plot.c b/plot.c
index 7a7a54e..c13b314 100644
--- a/plot.c
+++ b/plot.c
@@ -68,7 +68,7 @@ void
plot_clear(void)
{
/* blank out the background with black */
- SDL_SetRenderDrawColor(renderer, 0x00, 0x00, 0x00, 0xFF);
+ SDL_SetRenderDrawColor(renderer, 0x28, 0x28, 0x28, 0xFF);
SDL_RenderFillRect(renderer, NULL);
}