[Scummvm-git-logs] scummvm master -> 3a719ea6bcc98bc8123bc8012ba9de814c9f8f34
dwatteau
noreply at scummvm.org
Fri Jun 12 10:12:56 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:
3a719ea6bc PELROCK: Escape non-ASCII characters in the game name string
Commit: 3a719ea6bcc98bc8123bc8012ba9de814c9f8f34
https://github.com/scummvm/scummvm/commit/3a719ea6bcc98bc8123bc8012ba9de814c9f8f34
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2026-06-12T12:04:04+02:00
Commit Message:
PELROCK: Escape non-ASCII characters in the game name string
Similar to previous commit 254a63bcf981709ccf13250d5635b98591d858f9, as
"there is no guarantee that the compiler will assume UTF-8 encoding for
the source code files."
Changed paths:
engines/pelrock/detection_tables.h
diff --git a/engines/pelrock/detection_tables.h b/engines/pelrock/detection_tables.h
index 103e74e38c1..f9a59220b4f 100644
--- a/engines/pelrock/detection_tables.h
+++ b/engines/pelrock/detection_tables.h
@@ -22,7 +22,7 @@
namespace Pelrock {
const PlainGameDescriptor pelrockGames[] = {
- { "pelrock", "Alfred Pelrock: En Busca de un Sueño" },
+ { "pelrock", "Alfred Pelrock: En Busca de un Sue\303\261o" },
{ 0, 0 }
};
More information about the Scummvm-git-logs
mailing list