Enable Makefile.mingw compiles with FAudio.

This commit is contained in:
OBattler
2022-06-26 01:33:12 +02:00
parent f834caca9b
commit 688535115b

View File

@@ -173,6 +173,9 @@ endif
ifndef DINPUT
DINPUT := n
endif
ifndef FAUDIO
FAUDIO := n
endif
ifndef OPENAL
OPENAL := n
endif
@@ -747,6 +750,9 @@ endif
ifeq ($(OPENAL), y)
SNDOBJ += openal.o
else
ifeq ($(FAUDIO), y)
OPTS += -DUSE_FAUDIO
endif
SNDOBJ += xaudio2.o
endif