[Scummvm-git-logs] scummvm master -> 2abffb36f4ee7091a446b2bf395ae672eef87610
spleen1981
noreply at scummvm.org
Tue May 20 08:07:59 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:
2abffb36f4 LIBRETRO: BUILD: enable USE_SID_AUDIO by default
Commit: 2abffb36f4ee7091a446b2bf395ae672eef87610
https://github.com/scummvm/scummvm/commit/2abffb36f4ee7091a446b2bf395ae672eef87610
Author: Giovanni Cascione (ing.cascione at gmail.com)
Date: 2025-05-20T10:07:46+02:00
Commit Message:
LIBRETRO: BUILD: enable USE_SID_AUDIO by default
Changed paths:
backends/platform/libretro/Makefile.common
diff --git a/backends/platform/libretro/Makefile.common b/backends/platform/libretro/Makefile.common
index b941c174e4f..df89acc079c 100644
--- a/backends/platform/libretro/Makefile.common
+++ b/backends/platform/libretro/Makefile.common
@@ -21,6 +21,7 @@ LITE ?= 0
NO_WIP ?= 1
USE_LIBCO ?= 1
USE_MT32EMU ?= 1
+USE_SID_AUDIO ?= 1
DEBUG ?= 0
FORCE_OPENGL ?= 0
FORCE_OPENGLES2 ?= 0
@@ -298,10 +299,14 @@ endif
endif
ifeq ($(USE_MT32EMU),1)
- INCLUDES += -I$(SCUMMVM_PATH)/audio/softsynth/mt32/sha1
+ INCLUDES += -I$(SCUMMVM_PATH)/audio/softsynth/mt32/sha1
DEFINES += -DUSE_MT32EMU
endif
+ifeq ($(USE_SID_AUDIO),1)
+ DEFINES += -DUSE_SID_AUDIO
+endif
+
# Retrieve shared modules definitions from main Makefile.common
RETRIEVED_SHARED_MODULES := $(shell cat $(UP_COMMON_MAKE) | tr -s "\n" "\00" | sed -e 's|.*-include engines/engines.mk||' -e 's|\#\#\#.*||' | tr -s "\00" "\n" > $(SHARED_MOD_MAKE) && printf ok || printf error)
ifeq ($(RETRIEVED_SHARED_MODULES), ok)
More information about the Scummvm-git-logs
mailing list