mirror of
https://github.com/ekeeke/Genesis-Plus-GX.git
synced 2024-11-10 21:05:12 +01:00
Going to just use MSB_FIRST or LSB_FIRST here as an ifdef - this
is too much of a PITA
This commit is contained in:
parent
7948c690e7
commit
167ec02425
@ -37,10 +37,7 @@
|
||||
#include <sys/types.h>
|
||||
#endif
|
||||
|
||||
#if !defined(__LIBRETRO__) && defined(GEKKO)
|
||||
#ifndef __CELLOS_LV2__
|
||||
#ifndef _XBOX360
|
||||
#if BYTE_ORDER==LITTLE_ENDIAN
|
||||
#if defined(LSB_FIRST)
|
||||
union magic {
|
||||
struct {
|
||||
ogg_int32_t lo;
|
||||
@ -48,13 +45,7 @@ union magic {
|
||||
} halves;
|
||||
ogg_int64_t whole;
|
||||
};
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
#endif
|
||||
|
||||
#ifndef ANDROID
|
||||
#if BYTE_ORDER==BIG_ENDIAN
|
||||
#elif defined(MSB_FIRST)
|
||||
union magic {
|
||||
struct {
|
||||
ogg_int32_t hi;
|
||||
@ -63,7 +54,6 @@ union magic {
|
||||
ogg_int64_t whole;
|
||||
};
|
||||
#endif
|
||||
#endif
|
||||
|
||||
STIN ogg_int32_t MULT32(ogg_int32_t x, ogg_int32_t y) {
|
||||
union magic magic;
|
||||
|
Loading…
Reference in New Issue
Block a user