aboutsummaryrefslogtreecommitdiff
path: root/saga/music.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'saga/music.cpp')
-rw-r--r--saga/music.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/saga/music.cpp b/saga/music.cpp
index dd10297b2c..01c208edaf 100644
--- a/saga/music.cpp
+++ b/saga/music.cpp
@@ -139,7 +139,7 @@ void RAWInputStream::refill() {
if (len & 1)
len--;
- if (GAME_GetFeatures() & GF_BIG_ENDIAN_DATA) {
+ if (IS_BIG_ENDIAN) {
uint16 *ptr16 = (uint16 *)ptr;
for (uint32 i = 0; i < (len / 2); i++)
ptr16[i] = TO_BE_16(ptr16[i]);