2021-04-30 15:50:37 -07:00
|
|
|
From 173f555d0d4639122bd47d30310152263c1b27bf Mon Sep 17 00:00:00 2001
|
2020-12-31 18:35:27 -08:00
|
|
|
From: Alistair Leslie-Hughes <leslie_alistair@hotmail.com>
|
|
|
|
Date: Fri, 1 Jan 2021 13:32:48 +1100
|
|
|
|
Subject: [PATCH] dsound: Enable EAX by default
|
|
|
|
|
|
|
|
---
|
|
|
|
dlls/dsound/dsound_main.c | 2 +-
|
|
|
|
1 file changed, 1 insertion(+), 1 deletion(-)
|
|
|
|
|
|
|
|
diff --git a/dlls/dsound/dsound_main.c b/dlls/dsound/dsound_main.c
|
2021-04-30 15:50:37 -07:00
|
|
|
index 8b396a1939e..44463992e92 100644
|
2020-12-31 18:35:27 -08:00
|
|
|
--- a/dlls/dsound/dsound_main.c
|
|
|
|
+++ b/dlls/dsound/dsound_main.c
|
|
|
|
@@ -93,7 +93,7 @@ const WCHAR wine_vxd_drv[] = L"winemm.vxd";
|
|
|
|
/* All default settings, you most likely don't want to touch these, see wiki on UsefulRegistryKeys */
|
|
|
|
int ds_hel_buflen = 32768 * 2;
|
|
|
|
int ds_hq_buffers_max = 4;
|
|
|
|
-BOOL ds_eax_enabled = FALSE;
|
|
|
|
+BOOL ds_eax_enabled = TRUE;
|
|
|
|
|
|
|
|
#define IS_OPTION_TRUE(ch) \
|
2021-04-30 15:50:37 -07:00
|
|
|
((ch) == 'y' || (ch) == 'Y' || (ch) == 't' || (ch) == 'T' || (ch) == '1')
|
2020-12-31 18:35:27 -08:00
|
|
|
--
|
2021-04-30 15:50:37 -07:00
|
|
|
2.30.2
|
2020-12-31 18:35:27 -08:00
|
|
|
|