From 8e68fc8ef80649b52cb6d453e28f59c17cb697ec Mon Sep 17 00:00:00 2001 From: Rohesie Date: Fri, 23 Oct 2020 10:45:14 -0300 Subject: [PATCH] Fixes different planes having the same values (#54562) --- code/__DEFINES/layers.dm | 26 +++++++++++++------------- 1 file changed, 13 insertions(+), 13 deletions(-) diff --git a/code/__DEFINES/layers.dm b/code/__DEFINES/layers.dm index 4004c8eaea8..acf4dd2b9ee 100644 --- a/code/__DEFINES/layers.dm +++ b/code/__DEFINES/layers.dm @@ -134,22 +134,22 @@ //HUD layer defines -#define FULLSCREEN_PLANE 21 -#define FLASH_LAYER 21 -#define FULLSCREEN_LAYER 21.1 -#define UI_DAMAGE_LAYER 21.2 -#define BLIND_LAYER 21.3 -#define CRIT_LAYER 21.4 -#define CURSE_LAYER 21.5 +#define FULLSCREEN_PLANE 31 +#define FLASH_LAYER 31 +#define FULLSCREEN_LAYER 31.1 +#define UI_DAMAGE_LAYER 31.2 +#define BLIND_LAYER 31.3 +#define CRIT_LAYER 31.4 +#define CURSE_LAYER 31.5 #define FULLSCREEN_RENDER_TARGET "FULLSCREEN_PLANE" -#define HUD_PLANE 22 -#define HUD_LAYER 22 +#define HUD_PLANE 42 +#define HUD_LAYER 42 #define HUD_RENDER_TARGET "HUD_PLANE" -#define ABOVE_HUD_PLANE 23 -#define ABOVE_HUD_LAYER 23 +#define ABOVE_HUD_PLANE 43 +#define ABOVE_HUD_LAYER 43 #define ABOVE_HUD_RENDER_TARGET "ABOVE_HUD_PLANE" -#define SPLASHSCREEN_LAYER 24 -#define SPLASHSCREEN_PLANE 24 +#define SPLASHSCREEN_LAYER 54 +#define SPLASHSCREEN_PLANE 54 #define SPLASHSCREEN_RENDER_TARGET "SPLASHSCREEN_PLANE"