commit 817945120f025fcf8d90222bb767dafb0f847e5d
Author: Simon Howard <fraggle@soulsphere.org>
AuthorDate: Fri Dec 28 16:29:12 2018 -0500
Commit: Simon Howard <fraggle@soulsphere.org>
CommitDate: Fri Dec 28 16:29:12 2018 -0500
setup: Set "Romero Blue" for setup tool.
This uses Romero's "funky blue" color that was used in earlier
versions of the setup tool (and later disabled). I've been using this
in my build of the setup tool for the past few months and kind of like
it; it also gives a fresh look to Chocolate Doom's setup tool.
---
src/setup/mainmenu.c | 4 ++++
1 file changed, 4 insertions(+)
diff --git a/src/setup/mainmenu.c b/src/setup/mainmenu.c
index 67089d8c..62206b39 100644
--- a/src/setup/mainmenu.c
+++ b/src/setup/mainmenu.c
@@ -312,6 +312,10 @@ static void InitTextscreen(void)
exit(-1);
}
+ // Set Romero's "funky blue" color:
+ // <https://doomwiki.org/wiki/Romero_Blue>
+ TXT_SetColor(TXT_COLOR_BLUE, 0x04, 0x14, 0x40);
+
SetIcon();
SetWindowTitle();
}