[Scummvm-git-logs] scummvm master -> 9c6b7c429bd7651be4c00eab3b87021bd1ffb6b2
criezy
criezy at scummvm.org
Sun Aug 30 18:09:53 UTC 2020
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .
Summary:
9c6b7c429b GUI: Fix compilation when fancy themes are disabled
Commit: 9c6b7c429bd7651be4c00eab3b87021bd1ffb6b2
https://github.com/scummvm/scummvm/commit/9c6b7c429bd7651be4c00eab3b87021bd1ffb6b2
Author: Thierry Crozat (criezy at scummvm.org)
Date: 2020-08-30T19:09:05+01:00
Commit Message:
GUI: Fix compilation when fancy themes are disabled
Changed paths:
gui/launcher.cpp
diff --git a/gui/launcher.cpp b/gui/launcher.cpp
index 6abb832570..9135c05814 100644
--- a/gui/launcher.cpp
+++ b/gui/launcher.cpp
@@ -134,7 +134,7 @@ void LauncherDialog::build() {
new StaticTextWidget(this, "Launcher.Version", Common::U32String(gScummVMFullVersion));
#else
// Show ScummVM version
- new StaticTextWidget(this, "Launcher.Version", gScummVMFullVersion);
+ new StaticTextWidget(this, "Launcher.Version", Common::U32String(gScummVMFullVersion));
#endif
if (!g_system->hasFeature(OSystem::kFeatureNoQuit))
new ButtonWidget(this, "Launcher.QuitButton", _("~Q~uit"), _("Quit ScummVM"), kQuitCmd);
More information about the Scummvm-git-logs
mailing list