SoundUnit: fix fix

This commit is contained in:
tildearrow 2022-11-16 05:07:41 -05:00
parent c14e24688f
commit 6a997fd21f
1 changed files with 2 additions and 2 deletions

View File

@ -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