[Scummvm-git-logs] scummvm master -> 338b3c6deecaabdb9dfeadb0da6c35cfdebec628
eriktorbjorn
eriktorbjorn at telia.com
Wed Oct 20 11:34:44 UTC 2021
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:
338b3c6dee AUDIO: Fix check for OPL3 capable emulation
Commit: 338b3c6deecaabdb9dfeadb0da6c35cfdebec628
https://github.com/scummvm/scummvm/commit/338b3c6deecaabdb9dfeadb0da6c35cfdebec628
Author: Torbjörn Andersson (eriktorbjorn at users.sourceforge.net)
Date: 2021-10-20T13:34:31+02:00
Commit Message:
AUDIO: Fix check for OPL3 capable emulation
Both DOSBox and Nuked OPL should handle OPL3. Only the old MAME one
doesn't.
Changed paths:
audio/adlib.cpp
diff --git a/audio/adlib.cpp b/audio/adlib.cpp
index 0d6bdec5c5..41dcf68786 100644
--- a/audio/adlib.cpp
+++ b/audio/adlib.cpp
@@ -37,7 +37,7 @@ static int g_tick;
// Only include OPL3 when we actually have an AdLib emulator builtin, which
// supports OPL3.
-#ifndef DISABLE_DOSBOX_OPL
+#if !defined(DISABLE_DOSBOX_OPL) || !defined(DISABLE_NUKED_OPL)
#define ENABLE_OPL3
#endif
More information about the Scummvm-git-logs
mailing list