From 6a997fd21f0cb2021c58d50093f74a3e0eacbb25 Mon Sep 17 00:00:00 2001 From: tildearrow Date: Wed, 16 Nov 2022 05:07:41 -0500 Subject: [PATCH] SoundUnit: fix fix --- src/engine/platform/sound/su.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/engine/platform/sound/su.cpp b/src/engine/platform/sound/su.cpp index 67ee153e..4d98892c 100644 --- a/src/engine/platform/sound/su.cpp +++ b/src/engine/platform/sound/su.cpp @@ -392,8 +392,8 @@ void SoundUnit::Reset() { } #ifdef TA_BIG_ENDIAN -const unsigned char suBERemap[16]={ - 0x01, 0x00, 0x02, 0x03, 0x05, 0x04, 0x07, 0x06, 0x08, 0x09, 0x0b, 0x0a, 0x0d, 0x0c, 0x0f, 0x0e +const unsigned char suBERemap[32]={ + 0x01, 0x00, 0x02, 0x03, 0x05, 0x04, 0x07, 0x06, 0x08, 0x09, 0x0b, 0x0a, 0x0d, 0x0c, 0x0f, 0x0e, 0x11, 0x10, 0x12, 0x13, 0x15, 0x14, 0x16, 0x17, 0x19, 0x18, 0x1a, 0x1b, 0x1c, 0x1d, 0x1f, 0x1e }; #endif