[Scummvm-git-logs] scummvm master -> 9712daeaa79b59815d0cbb6ed2312b44ae677d96

sev- noreply at scummvm.org
Sun Mar 1 17:16:00 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:
9712daeaa7 BASE: Do not register COREMIDI plugin for tvOS


Commit: 9712daeaa79b59815d0cbb6ed2312b44ae677d96
    https://github.com/scummvm/scummvm/commit/9712daeaa79b59815d0cbb6ed2312b44ae677d96
Author: Lars Sundström (l.sundstrom at gmail.com)
Date: 2026-03-01T18:15:54+01:00

Commit Message:
BASE: Do not register COREMIDI plugin for tvOS

tvOS doesn't have full CoreMIDI support as iOS and macOS have. Disable
the COREMIDI plugin so it's not included in the Apple TV builds.

Changed paths:
    base/plugins.cpp


diff --git a/base/plugins.cpp b/base/plugins.cpp
index b39527a5447..7d8d93fc1c1 100644
--- a/base/plugins.cpp
+++ b/base/plugins.cpp
@@ -128,7 +128,7 @@ public:
 		#if defined(MACOSX)
 		LINK_PLUGIN(COREAUDIO)
 		#endif
-		#if defined(MACOSX) || defined(IPHONE)
+		#if defined(MACOSX) || defined(IPHONE) && !defined(IPHONE_TVOS)
 		LINK_PLUGIN(COREMIDI)
 		#endif
 		#ifdef USE_FLUIDSYNTH




More information about the Scummvm-git-logs mailing list