[Scummvm-git-logs] scummvm master -> 5face6564d295e03e386088594aa845200f50b17

mikrosk noreply at scummvm.org
Thu Apr 16 01:30:18 UTC 2026


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:
6fa2e004fa COMMON: Avoid ':' punycoding also on FireBee backend
5face6564d BACKENDS: FS: Don't assume long names on FireBee backend


Commit: 6fa2e004fac9ade74ee498de86e7d2a773ac3fdb
    https://github.com/scummvm/scummvm/commit/6fa2e004fac9ade74ee498de86e7d2a773ac3fdb
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2026-04-16T11:28:10+10:00

Commit Message:
COMMON: Avoid ':' punycoding also on FireBee backend

Changed paths:
    common/path.cpp


diff --git a/common/path.cpp b/common/path.cpp
index dd69c348074..bb3bccee986 100644
--- a/common/path.cpp
+++ b/common/path.cpp
@@ -1240,7 +1240,7 @@ String Path::toConfig() const {
 			return toString(Path::kNativeSeparator);
 		}
 	}
-#elif defined(__3DS__) || defined(__amigaos4__) || defined(ATARI) || defined(__DS__) || defined(__MORPHOS__) || defined(NINTENDO_SWITCH) || defined(__PSP__) || defined(PSP2) || defined(RISCOS) || defined(__WII__) || defined(WIN32)
+#elif defined(__3DS__) || defined(__amigaos4__) || defined(__MINT__) || defined(__DS__) || defined(__MORPHOS__) || defined(NINTENDO_SWITCH) || defined(__PSP__) || defined(PSP2) || defined(RISCOS) || defined(__WII__) || defined(WIN32)
 	// For all platforms making use of : as a drive separator, avoid useless punycoding
 	if (!isEscaped()) {
 		// If we are escaped, we have forbidden characters which must be encoded


Commit: 5face6564d295e03e386088594aa845200f50b17
    https://github.com/scummvm/scummvm/commit/5face6564d295e03e386088594aa845200f50b17
Author: Miro Kropacek (miro.kropacek at gmail.com)
Date: 2026-04-16T11:28:10+10:00

Commit Message:
BACKENDS: FS: Don't assume long names on FireBee backend

Changed paths:
    backends/fs/stdiostream.cpp


diff --git a/backends/fs/stdiostream.cpp b/backends/fs/stdiostream.cpp
index db2cb7bd60b..525bd112d28 100644
--- a/backends/fs/stdiostream.cpp
+++ b/backends/fs/stdiostream.cpp
@@ -39,7 +39,7 @@
 // libronin doesn't support rename
 #define STDIOSTREAM_NO_ATOMIC_SUPPORT
 #endif
-#if defined(ATARI)
+#if defined(__MINT__)
 // Atari file names must have a 8.3 format, atomic breaks this
 #define STDIOSTREAM_NO_ATOMIC_SUPPORT
 #endif




More information about the Scummvm-git-logs mailing list