aboutsummaryrefslogtreecommitdiff
path: root/src/cdraw.c
diff options
context:
space:
mode:
authorKrow Savcik <krow@savcik.xyz>2024-02-13 18:25:28 +0200
committerKrow Savcik <krow@savcik.xyz>2024-02-13 18:25:28 +0200
commit669f50e2d6fc55751e0f3afb4d1bdf633446b169 (patch)
treea9bf97687d483cd53ee77529b9377480382b703e /src/cdraw.c
parent8b8e1cab080dfea106bebe9d4eeecf5812182e94 (diff)
improved: changed colors to hexadecimal where posssible
Diffstat (limited to 'src/cdraw.c')
-rw-r--r--src/cdraw.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/cdraw.c b/src/cdraw.c
index 74335d4..ecec5de 100644
--- a/src/cdraw.c
+++ b/src/cdraw.c
@@ -80,7 +80,7 @@ main_window_init(const char *s)
return 1;
}
- SDL_SetRenderDrawColor(ren, 18, 18, 18, 255);
+ SDL_SetRenderDrawColor(ren, INTTOCOLA(0x121212ff));
SDL_SetRenderDrawBlendMode(ren, SDL_BLENDMODE_NONE);
SDL_RenderPresent(ren);