From 43fbf297c8c93365fa6fd1d0232e31bf952f5ad0 Mon Sep 17 00:00:00 2001 From: Sergeanur Date: Thu, 12 Aug 2021 14:15:49 +0300 Subject: [PATCH] Waypoint text fix --- src/core/Radar.cpp | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/src/core/Radar.cpp b/src/core/Radar.cpp index dab82c3e..7e3a75b3 100644 --- a/src/core/Radar.cpp +++ b/src/core/Radar.cpp @@ -1799,6 +1799,11 @@ CRadar::DrawLegend(int32 x, int32 y, int32 sprite) case RADAR_SPRITE_RADIO_WAVE: text = TheText.Get("LG_34"); break; +#ifdef MAP_ENHANCEMENTS + case RADAR_SPRITE_WAYPOINT: + text = TheText.Get("LG_38"); + break; +#endif default: break; }