[Scummvm-git-logs] scummvm branch-2-9 -> 561aaeac5083e93cd7f83f84ec43ce3a06d90ff7

dwatteau noreply at scummvm.org
Wed Apr 30 12:24:06 UTC 2025


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:
561aaeac50 BACKENDS: FS: Fix macro name for previous macOS workaround


Commit: 561aaeac5083e93cd7f83f84ec43ce3a06d90ff7
    https://github.com/scummvm/scummvm/commit/561aaeac5083e93cd7f83f84ec43ce3a06d90ff7
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2025-04-30T14:00:33+02:00

Commit Message:
BACKENDS: FS: Fix macro name for previous macOS workaround

Changed paths:
    backends/fs/posix/posix-fs.cpp


diff --git a/backends/fs/posix/posix-fs.cpp b/backends/fs/posix/posix-fs.cpp
index ce1ebcbebc0..b1e0eaa5088 100644
--- a/backends/fs/posix/posix-fs.cpp
+++ b/backends/fs/posix/posix-fs.cpp
@@ -209,7 +209,7 @@ bool POSIXFilesystemNode::getChildren(AbstractFSList &myList, ListMode mode, boo
 		// releases, but for 2.9.x we avoid changing too much, and just apply a
 		// smaller fix that's only targeting older macOS.
 		if (dp->d_type == DT_UNKNOWN
-#  if defined(MACOSX) && __MAC_OS_X_VERSION_MIN_REQUIRED < 1070
+#  if defined(MACOSX) && defined(MAC_OS_X_VERSION_MIN_REQUIRED) && MAC_OS_X_VERSION_MIN_REQUIRED < 1070
 #    define kAppleCDDATrackType    2
 #    define kAppleCDDAXMLFileType  3
 			|| dp->d_type == kAppleCDDATrackType




More information about the Scummvm-git-logs mailing list