From fafabef792617639822438ec6b1714de2b00667c Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Martin=20T=C5=AFma?= Date: Wed, 23 Apr 2025 08:10:36 +0200 Subject: [PATCH] Make RADRFL draw order higher than PILPNT draw order --- src/map/ENC/mapdata.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/map/ENC/mapdata.cpp b/src/map/ENC/mapdata.cpp index 8576635c..c4d2e3b2 100644 --- a/src/map/ENC/mapdata.cpp +++ b/src/map/ENC/mapdata.cpp @@ -70,10 +70,10 @@ static QMap orderMapInit() map.insert(TYPE(I_TRNBSN), 32); map.insert(TYPE(HRBFAC), 33); map.insert(TYPE(I_HRBFAC), 33); - map.insert(TYPE(PILPNT), 34); - map.insert(TYPE(ACHBRT), 35); - map.insert(TYPE(I_ACHBRT), 35); - map.insert(TYPE(RADRFL), 36); + map.insert(TYPE(RADRFL), 34); + map.insert(TYPE(PILPNT), 35); + map.insert(TYPE(ACHBRT), 36); + map.insert(TYPE(I_ACHBRT), 36); map.insert(TYPE(CRANES), 37); map.insert(TYPE(I_CRANES), 37); map.insert(TYPE(I_WTWGAG), 38);