summaryrefslogtreecommitdiffhomepage
path: root/src/wall.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/wall.c')
-rw-r--r--src/wall.c4
1 files changed, 2 insertions, 2 deletions
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);
}