From 48bc257472bcebd34854c28a29752688ffc17651 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=28=C2=B4=E3=83=BB=CF=89=E3=83=BB=EF=BD=80=29?= Date: Mon, 8 Feb 2021 19:50:02 +0900 Subject: [PATCH] FIX: color_index is specified where it should be rgb --- gui/minimap.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gui/minimap.cc b/gui/minimap.cc index 672bad003..509c5e68e 100644 --- a/gui/minimap.cc +++ b/gui/minimap.cc @@ -774,7 +774,7 @@ PIXVAL minimap_t::calc_ground_color(const grund_t *gr) case air_wt: color = COL_RUNWAY; break; case monorail_wt: default: // all other ways light red ... - color = 135; break; + color = color_idx_to_rgb(135); break; break; } }