QUOTE: Enjoy small things, cherish moments.

fix: Fixed incorrect background color - freezo - A retro platform game

freezo

A retro platform game
git clone git@soophie.de:/srv/git/freezo
log | files | refs | readme

commit cc01827ef453d3e9c4cd93c85f774f0aa6486746
parent 3238b96f9db02ed03b8d51c7d017157fe1d62eaa
Author: Sophie <info@soophie.de>
Date:   Mon, 16 Dec 2024 18:06:39 +0000

fix: Fixed incorrect background color

Diffstat:
Msrc/game.c | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/game.c b/src/game.c @@ -152,7 +152,7 @@ void game_draw(game_t *game) { EndTextureMode(); // render sceen BeginDrawing(); - ClearBackground((Color) { 5, 5, 5, 1 }); + ClearBackground((Color) { 5, 5, 5, 255 }); if (game->level != LEVEL_NULL) { BeginMode2D(game->camera); for (int i = 0; i < game->tiles_len; i++) {