summaryrefslogtreecommitdiff
path: root/src/common/swap.h
diff options
context:
space:
mode:
authorGravatar Emmanuel Gil Peyrot2015-01-05 16:30:02 +0000
committerGravatar Emmanuel Gil Peyrot2015-01-06 18:57:28 +0000
commit6b411c63c9b084e99a3711da10f93225ff93cc85 (patch)
tree963e9f9afcbc6e052466e4d3a1acee7cd654f8b3 /src/common/swap.h
parentMerge pull request #402 from chrisvj/master (diff)
downloadyuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.tar.gz
yuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.tar.xz
yuzu-6b411c63c9b084e99a3711da10f93225ff93cc85.zip
Common: Remove dead platform #ifdefs to make the code more readable.
Symbian, Xbox, Blackberry and iOS got removed. FreeBSD and Android kept due to them potentially being able to run Citra in the future. The iOS specific part also got removed from PPSSPP in order to fix a bug there.
Diffstat (limited to 'src/common/swap.h')
-rw-r--r--src/common/swap.h4
1 files changed, 0 insertions, 4 deletions
diff --git a/src/common/swap.h b/src/common/swap.h
index 4f8f39efb..e2d918362 100644
--- a/src/common/swap.h
+++ b/src/common/swap.h
@@ -48,11 +48,7 @@
48// MSVC 48// MSVC
49#elif defined(_MSC_VER) && !defined(COMMON_BIG_ENDIAN) && !defined(COMMON_LITTLE_ENDIAN) 49#elif defined(_MSC_VER) && !defined(COMMON_BIG_ENDIAN) && !defined(COMMON_LITTLE_ENDIAN)
50 50
51#ifdef _XBOX
52#define COMMON_BIG_ENDIAN 1
53#else
54#define COMMON_LITTLE_ENDIAN 1 51#define COMMON_LITTLE_ENDIAN 1
55#endif
56 52
57#endif 53#endif
58 54