change: minimap: change player color to blue

This commit is contained in:
mcolonna 2024-11-19 13:31:46 +01:00
parent 2ec9ce4f8e
commit 7684e02cc5

View file

@ -6,7 +6,7 @@
/* By: mcolonna <marvin@42.fr> +#+ +:+ +#+ */
/* +#+#+#+#+#+ +#+ */
/* Created: 2024/10/31 17:00:59 by mcolonna #+# #+# */
/* Updated: 2024/11/19 13:05:50 by mcolonna ### ########.fr */
/* Updated: 2024/11/19 13:31:42 by marvin ### ########.fr */
/* */
/* ************************************************************************** */
@ -30,7 +30,7 @@
# define MINIMAP_SCALE 8 // Size of a case on the minimap.
# define MINIMAP_COLOR_WALL 0xFFAF33 // Color of the walls on the minimap
# define MINIMAP_COLOR_EMPTY 0xFFFC33 // Color of the empty cases on the minimap
# define MINIMAP_COLOR_PLAYER 0xFF0000 // Color of the player on the minimap
# define MINIMAP_COLOR_PLAYER 0x0000FF // Color of the player on the minimap
// Distance from the player until where the FOV is drawn (unit: cases).
# define MINIMAP_DISTANCE_FOV 3 // Size of the FOV on the minimap
# define MINIMAP_OPACITY_FOV 0.8 // Opacity of the FOV on the minimap