[Scummvm-git-logs] scummvm master -> f7990d0d154f9b71169a320bb4b8d404054f5fb9
dwatteau
noreply at scummvm.org
Mon Apr 10 21:26:47 UTC 2023
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:
f7990d0d15 AUDIO: Fix mikmod.h longjmp usage on Windows arm64
Commit: f7990d0d154f9b71169a320bb4b8d404054f5fb9
https://github.com/scummvm/scummvm/commit/f7990d0d154f9b71169a320bb4b8d404054f5fb9
Author: Donovan Watteau (contrib at dwatteau.fr)
Date: 2023-04-10T22:39:44+02:00
Commit Message:
AUDIO: Fix mikmod.h longjmp usage on Windows arm64
Changed paths:
audio/mods/impulsetracker.cpp
diff --git a/audio/mods/impulsetracker.cpp b/audio/mods/impulsetracker.cpp
index 9a6e2ed7839..c3857c00408 100644
--- a/audio/mods/impulsetracker.cpp
+++ b/audio/mods/impulsetracker.cpp
@@ -23,10 +23,11 @@
// mikmod headers.
#define FORBIDDEN_SYMBOL_EXCEPTION_FILE
-// On Windows, unlink and setjmp may also be triggered.
+// On Windows, unlink and setjmp/longjmp may also be triggered.
#if defined(WIN32)
#define FORBIDDEN_SYMBOL_EXCEPTION_unlink
#define FORBIDDEN_SYMBOL_EXCEPTION_setjmp
+#define FORBIDDEN_SYMBOL_EXCEPTION_longjmp
#endif
#include "audio/mods/impulsetracker.h"
More information about the Scummvm-git-logs
mailing list