From 828df8b9bf1f05e00dfed18e7e7a562a46f2969a Mon Sep 17 00:00:00 2001 From: realtradam Date: Sun, 28 May 2023 17:28:34 -0400 Subject: prettify --- src/wall.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/wall.c') diff --git a/src/wall.c b/src/wall.c index d3c9d3f..46b2401 100644 --- a/src/wall.c +++ b/src/wall.c @@ -136,7 +136,7 @@ void draw_level(void) { rodeo_rectangle_t rect = (rodeo_rectangle_t){0,0,1600,900}; - rodeo_texture_2d_draw(&rect, &rect, NULL, &wall_texture); - rodeo_texture_2d_draw(&rect, &rect, NULL, &floor_texture); + rodeo_texture_2d_draw(&rect, &rect, &(rodeo_color_RGBAFloat_t){ .array = {0.96f, 0.41f, 0.1f, 1.0f} }, &wall_texture); + rodeo_texture_2d_draw(&rect, &rect, &(rodeo_color_RGBAFloat_t){ .array = {0.52f, 0.31f, 0.73f, 0.33f} }, &floor_texture); } -- cgit v1.2.3