Merge pull request #89 from Clownacy/patch-1

Fix check for M64P_BIG_ENDIAN
This commit is contained in:
Richard Goedeken 2024-01-12 20:21:12 -08:00 committed by GitHub
commit f01be76948
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -237,7 +237,7 @@ void alist_interleave(struct hle_t* hle, uint16_t dmemo, uint16_t left, uint16_t
uint16_t r1 = *(srcR++);
uint16_t r2 = *(srcR++);
#if M64P_BIG_ENDIAN
#ifdef M64P_BIG_ENDIAN
*(dst++) = l1;
*(dst++) = r1;
*(dst++) = l2;