Skip to content

Commit

Permalink
fix MinGW build
Browse files Browse the repository at this point in the history
  • Loading branch information
nschimme committed Jun 16, 2024
1 parent 88199cc commit e802cf1
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion src/configuration/configuration.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -971,6 +971,7 @@ void Configuration::ColorSettings::resetToDefaults()
static const Color special{204, 25, 204}; // closest well-known color is "Red Violet"
static const Color noflee{123, 63, 0}; // closest well-known color is "Cinnamon"
static const Color water{76, 216, 255}; // closest well-known color is "Malibu"
static const Color clear{0, 0, 0, 0};

BACKGROUND = background;
INFOMARK_COMMENT = Colors::gray75;
Expand All @@ -983,7 +984,7 @@ void Configuration::ColorSettings::resetToDefaults()
ROOM_DARK = darkRoom;
ROOM_NO_SUNDEATH = noSundeath;
STREAM = water;
TRANSPARENT = Color(0, 0, 0, 0);
TRANSPARENT.setColor(clear);
VERTICAL_COLOR_CLIMB = Colors::webGray;
VERTICAL_COLOR_REGULAR_EXIT = Colors::white;
WALL_COLOR_BUG_WALL_DOOR = Colors::red20;
Expand Down

0 comments on commit e802cf1

Please sign in to comment.