summaryrefslogtreecommitdiff
path: root/lib/rbcodec
diff options
context:
space:
mode:
Diffstat (limited to 'lib/rbcodec')
-rw-r--r--lib/rbcodec/codecs/libgme/gb_cpu_run.h2
-rw-r--r--lib/rbcodec/codecs/libgme/z80_cpu_run.h2
2 files changed, 2 insertions, 2 deletions
diff --git a/lib/rbcodec/codecs/libgme/gb_cpu_run.h b/lib/rbcodec/codecs/libgme/gb_cpu_run.h
index 1ea8b59249..acfd515ca3 100644
--- a/lib/rbcodec/codecs/libgme/gb_cpu_run.h
+++ b/lib/rbcodec/codecs/libgme/gb_cpu_run.h
@@ -129,7 +129,7 @@ int const c10 = 0x10; // cz
129 129
130 #ifdef BLARGG_BIG_ENDIAN 130 #ifdef BLARGG_BIG_ENDIAN
131 #define R8( n ) (reg.r8_ [n]) 131 #define R8( n ) (reg.r8_ [n])
132 #elif BLARGG_LITTLE_ENDIAN 132 #elif defined(BLARGG_LITTLE_ENDIAN)
133 #define R8( n ) (reg.r8_ [(n) ^ 1]) 133 #define R8( n ) (reg.r8_ [(n) ^ 1])
134 #else 134 #else
135 // Be sure "blargg_endian.h" has been #included in the file that #includes this 135 // Be sure "blargg_endian.h" has been #included in the file that #includes this
diff --git a/lib/rbcodec/codecs/libgme/z80_cpu_run.h b/lib/rbcodec/codecs/libgme/z80_cpu_run.h
index a453487bb0..26c2a1a7b6 100644
--- a/lib/rbcodec/codecs/libgme/z80_cpu_run.h
+++ b/lib/rbcodec/codecs/libgme/z80_cpu_run.h
@@ -131,7 +131,7 @@ int const C01 = 0x01;
131 131
132#ifdef BLARGG_BIG_ENDIAN 132#ifdef BLARGG_BIG_ENDIAN
133 #define R8( n, offset ) ((r.r8_ - offset) [n]) 133 #define R8( n, offset ) ((r.r8_ - offset) [n])
134#elif BLARGG_LITTLE_ENDIAN 134#elif defined(BLARGG_LITTLE_ENDIAN)
135 #define R8( n, offset ) ((r.r8_ - offset) [(n) ^ 1]) 135 #define R8( n, offset ) ((r.r8_ - offset) [(n) ^ 1])
136#else 136#else
137 #error "Byte order of CPU must be known" 137 #error "Byte order of CPU must be known"