Rebrand the launcher to make it more distinctly GZDoom

- Use a Light theme to clearly differentiate GZDoom from VKDoom
- Moved the version label to not visually clash with the banner graphics
- Added unique graphics for the banner and the BOOTLOGO
- Changed the loading bar color to match GZDoom's logo
This commit is contained in:
nashmuhandes 2025-06-21 16:50:03 +08:00 committed by Rachael Alexanderson
commit 00a5bce5d7
9 changed files with 10 additions and 16 deletions

View file

@ -23,7 +23,7 @@ void InitWidgetResources(const char* filename)
if (!WidgetResources)
I_FatalError("Unable to open %s", filename);
WidgetTheme::SetTheme(std::make_unique<DarkWidgetTheme>());
WidgetTheme::SetTheme(std::make_unique<LightWidgetTheme>()); // GZDoom uses a different theme than VKDoom
}
void CloseWidgetResources()