From 9a5f3c86e85ebb9f5228e89485996ddfae0afd9c Mon Sep 17 00:00:00 2001 From: Gleb Mazovetskiy Date: Sun, 2 May 2021 18:26:44 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=8E=B6=20Re-enable=20streaming=20audio=20?= =?UTF-8?q?everywhere?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- CMake/ctr/n3ds_defs.cmake | 5 ----- CMake/switch/switch_defs.cmake | 5 ----- CMake/vita_defs.cmake | 5 ----- 3 files changed, 15 deletions(-) diff --git a/CMake/ctr/n3ds_defs.cmake b/CMake/ctr/n3ds_defs.cmake index a0aa8c3be..adc77d03e 100644 --- a/CMake/ctr/n3ds_defs.cmake +++ b/CMake/ctr/n3ds_defs.cmake @@ -2,11 +2,6 @@ set(NONET ON) set(USE_SDL1 ON) -# Streaming audio is broken on the 3DS as of 25 Mar 2021: -# https://github.com/devkitPro/SDL/issues/72 -set(DISABLE_STREAMING_MUSIC ON) -set(DISABLE_STREAMING_SOUNDS ON) - #3DS libraries list(APPEND CMAKE_MODULE_PATH "${DevilutionX_SOURCE_DIR}/CMake/ctr/modules") find_package(CITRO3D REQUIRED) diff --git a/CMake/switch/switch_defs.cmake b/CMake/switch/switch_defs.cmake index ea0fec81b..bd3f0d347 100644 --- a/CMake/switch/switch_defs.cmake +++ b/CMake/switch/switch_defs.cmake @@ -1,11 +1,6 @@ set(NONET ON) set(PREFILL_PLAYER_NAME ON) -# Streaming audio is broken on the Switch as of 25 Mar 2021: -# https://github.com/devkitPro/SDL/issues/72 -set(DISABLE_STREAMING_MUSIC ON) -set(DISABLE_STREAMING_SOUNDS ON) - set(JOY_BUTTON_DPAD_LEFT 16) set(JOY_BUTTON_DPAD_UP 17) set(JOY_BUTTON_DPAD_RIGHT 18) diff --git a/CMake/vita_defs.cmake b/CMake/vita_defs.cmake index 1c4572c3a..344f42b0e 100644 --- a/CMake/vita_defs.cmake +++ b/CMake/vita_defs.cmake @@ -3,10 +3,5 @@ set(UBSAN OFF) set(NONET ON) set(PREFILL_PLAYER_NAME ON) -# Streaming audio is broken on the Vita as of 15 Apr 2021: -# https://github.com/diasurgical/devilutionX/issues/1526 -set(DISABLE_STREAMING_MUSIC ON) -set(DISABLE_STREAMING_SOUNDS ON) - set(DEFAULT_WIDTH 960) set(DEFAULT_HEIGHT 544)