[Scummvm-git-logs] scummvm master -> 81c05030085445f3ef4be7ec801861f9086e0e15

lephilousophe noreply at scummvm.org
Sun Jun 16 07:12:20 UTC 2024


This automated email contains information about 1 new commit which have been
pushed to the 'scummvm' repo located at https://github.com/scummvm/scummvm .

Summary:
81c0503008 MACOSX: Fix macOS builds with plugins (as used for OSX PPC releases)


Commit: 81c05030085445f3ef4be7ec801861f9086e0e15
    https://github.com/scummvm/scummvm/commit/81c05030085445f3ef4be7ec801861f9086e0e15
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2024-06-16T09:12:16+02:00

Commit Message:
MACOSX: Fix macOS builds with plugins (as used for OSX PPC releases)

Changed paths:
    backends/plugins/sdl/macosx/macosx-provider.cpp


diff --git a/backends/plugins/sdl/macosx/macosx-provider.cpp b/backends/plugins/sdl/macosx/macosx-provider.cpp
index 7e42863f664..c3b65fb47d0 100644
--- a/backends/plugins/sdl/macosx/macosx-provider.cpp
+++ b/backends/plugins/sdl/macosx/macosx-provider.cpp
@@ -29,7 +29,7 @@
 #include "common/fs.h"
 
 void MacOSXPluginProvider::addCustomDirectories(Common::FSList &dirs) const {
-	Common::String bundlePath = getResourceAppBundlePathMacOSX();
+	Common::Path bundlePath(getResourceAppBundlePathMacOSX(), Common::Path::kNativeSeparator);
 	if (!bundlePath.empty())
 		dirs.push_back(Common::FSNode(bundlePath));
 }




More information about the Scummvm-git-logs mailing list