From 2e32fba4d958f417bdb4aff54b9fe501d1d0fcf6 Mon Sep 17 00:00:00 2001 From: jacob1 Date: Tue, 1 Sep 2015 01:46:33 -0400 Subject: [PATCH] fix GRAV and EXOT button colors this also fixes GRAV with pretty powders on. TODO: maybe use old GRAV color cycling --- src/simulation/elements/EXOT.cpp | 2 +- src/simulation/elements/GRAV.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/simulation/elements/EXOT.cpp b/src/simulation/elements/EXOT.cpp index 86e0c1d08..9972087b2 100644 --- a/src/simulation/elements/EXOT.cpp +++ b/src/simulation/elements/EXOT.cpp @@ -4,7 +4,7 @@ Element_EXOT::Element_EXOT() { Identifier = "DEFAULT_PT_EXOT"; Name = "EXOT"; - Colour = PIXPACK(0x404040); + Colour = PIXPACK(0x247BFE); MenuVisible = 1; MenuSection = SC_NUCLEAR; Enabled = 1; diff --git a/src/simulation/elements/GRAV.cpp b/src/simulation/elements/GRAV.cpp index c8d1484a0..649344c70 100644 --- a/src/simulation/elements/GRAV.cpp +++ b/src/simulation/elements/GRAV.cpp @@ -4,7 +4,7 @@ Element_GRAV::Element_GRAV() { Identifier = "DEFAULT_PT_GRAV"; Name = "GRAV"; - Colour = PIXPACK(0xFFE0A0); + Colour = PIXPACK(0x202020); MenuVisible = 1; MenuSection = SC_POWDERS; Enabled = 1;