From 0558bde1e61374f5a1b54453f07fe6cc15525bc1 Mon Sep 17 00:00:00 2001 From: roeming Date: Fri, 20 Feb 2026 05:48:29 -0500 Subject: Big cast cleanup (#3076) * Big cast cleanup * fix for name conflict * rename header * rename cast macros * fix rename mistake --------- Co-authored-by: roeming --- src/d/d_menu_map_common.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'src/d/d_menu_map_common.cpp') diff --git a/src/d/d_menu_map_common.cpp b/src/d/d_menu_map_common.cpp index c0db6ddcd2..4d5ed2699b 100644 --- a/src/d/d_menu_map_common.cpp +++ b/src/d/d_menu_map_common.cpp @@ -564,7 +564,7 @@ void dMenuMapCommon_c::setBlendRatio(u8 i_iconNo, f32 param_2, f32 param_3) { void dMenuMapCommon_c::blinkMove(s16 param_1) { mBlinkTimer++; if (mBlinkTimer >= param_1) { - mBlinkTimer -= (s16)(param_1 + 15); + S16_SUB(mBlinkTimer, param_1 + 15); } if (mBlinkTimer < 0) { -- cgit v1.2.3