[Scummvm-git-logs] scummvm master -> 0439d6ab8eeff4d248f0504b5d348cedac930914
lotharsm
noreply at scummvm.org
Sun Oct 12 17:11:42 UTC 2025
This automated email contains information about 2 new commits which have been
pushed to the 'scummvm' repo located at https://api.github.com/repos/scummvm/scummvm .
Summary:
2d7a5d321f GUI: Fix copyright year in About dialog
0439d6ab8e GUI: Improve formatting of compiledExtensionsList in About dialog
Commit: 2d7a5d321f8530dc30a667d07da35856c6c8a685
https://github.com/scummvm/scummvm/commit/2d7a5d321f8530dc30a667d07da35856c6c8a685
Author: Lothar Serra Mari (mail at serra.me)
Date: 2025-10-12T19:11:18+02:00
Commit Message:
GUI: Fix copyright year in About dialog
Changed paths:
gui/about.cpp
diff --git a/gui/about.cpp b/gui/about.cpp
index c38f37db0e9..d4aeda2d576 100644
--- a/gui/about.cpp
+++ b/gui/about.cpp
@@ -65,7 +65,7 @@ enum {
static const char *const copyright_text[] = {
"",
-"C0""Copyright (C) 2001-2024 The ScummVM Team",
+"C0""Copyright (C) 2001-2025 The ScummVM Team",
"C0""https://www.scummvm.org",
"",
"C0""ScummVM is the legal property of its developers, whose names are too numerous to list here. Please refer to the COPYRIGHT file distributed with this binary.",
Commit: 0439d6ab8eeff4d248f0504b5d348cedac930914
https://github.com/scummvm/scummvm/commit/0439d6ab8eeff4d248f0504b5d348cedac930914
Author: Lothar Serra Mari (mail at serra.me)
Date: 2025-10-12T19:11:18+02:00
Commit Message:
GUI: Improve formatting of compiledExtensionsList in About dialog
Changed paths:
gui/about.cpp
diff --git a/gui/about.cpp b/gui/about.cpp
index d4aeda2d576..f2cff0e1fa8 100644
--- a/gui/about.cpp
+++ b/gui/about.cpp
@@ -142,7 +142,7 @@ AboutDialog::AboutDialog(bool inGame)
extensionsInfo += _("CPU extensions support:");
addLine(extensionsInfo);
Common::U32String compiledExtensionsList("C0");
- compiledExtensionsList += Common::U32String::format("SSE2(%S) AVX2(%S) NEON(%S)",
+ compiledExtensionsList += Common::U32String::format("SSE2: %S, AVX2: %S, NEON: %S",
extensionSupportString[sse2Support].c_str(),
extensionSupportString[avx2Support].c_str(),
extensionSupportString[neonSupport].c_str());
More information about the Scummvm-git-logs
mailing list