[Scummvm-git-logs] scummvm master -> d1c44bc5ab60e31781006fff6bd3a9efc6c4e55d
sev-
noreply at scummvm.org
Fri Jul 3 11:26:30 UTC 2026
This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
d1c44bc5ab BAGEL: Fix build with --enable-release
Commit: d1c44bc5ab60e31781006fff6bd3a9efc6c4e55d
https://github.com/scummvm/scummvm/commit/d1c44bc5ab60e31781006fff6bd3a9efc6c4e55d
Author: Eugene Sandulenko (sev at scummvm.org)
Date: 2026-07-03T13:26:07+02:00
Commit Message:
BAGEL: Fix build with --enable-release
Changed paths:
engines/bagel/spacebar/master_win.cpp
diff --git a/engines/bagel/spacebar/master_win.cpp b/engines/bagel/spacebar/master_win.cpp
index 7224365dcc6..c91144c112f 100644
--- a/engines/bagel/spacebar/master_win.cpp
+++ b/engines/bagel/spacebar/master_win.cpp
@@ -19,6 +19,8 @@
*
*/
+#include "base/version.h"
+
#include "bagel/spacebar/master_win.h"
#include "bagel/spacebar/baglib/zoom_pda.h"
#include "bagel/spacebar/computer.h"
@@ -46,7 +48,7 @@ namespace SpaceBar {
static const char *GetBuildVersion() {
#ifdef RELEASE_BUILD
- return buildString("Version: %s", SCUMMVM_VERSION);
+ return buildString("Version: %s", gScummVMVersion);
#else
return buildString("Version: %s, %s", __DATE__, __TIME__);
#endif
More information about the Scummvm-git-logs
mailing list