summaryrefslogtreecommitdiffstats
path: root/src/common/platform.h
diff options
context:
space:
mode:
authorEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-20 21:14:43 +0200
committerEmmanuel Gil Peyrot <linkmauve@linkmauve.fr>2015-06-27 15:43:57 +0200
commitce0cfd62d95cdc46f4517ad16a0396a5815cb595 (patch)
tree0959d0cb4a7ec90063da7fd924321cfe847bb77c /src/common/platform.h
parentCommon: Remove unused SSE version checking and a GCC macro. (diff)
downloadyuzu-ce0cfd62d95cdc46f4517ad16a0396a5815cb595.tar
yuzu-ce0cfd62d95cdc46f4517ad16a0396a5815cb595.tar.gz
yuzu-ce0cfd62d95cdc46f4517ad16a0396a5815cb595.tar.bz2
yuzu-ce0cfd62d95cdc46f4517ad16a0396a5815cb595.tar.lz
yuzu-ce0cfd62d95cdc46f4517ad16a0396a5815cb595.tar.xz
yuzu-ce0cfd62d95cdc46f4517ad16a0396a5815cb595.tar.zst
yuzu-ce0cfd62d95cdc46f4517ad16a0396a5815cb595.zip
Diffstat (limited to 'src/common/platform.h')
-rw-r--r--src/common/platform.h30
1 files changed, 0 insertions, 30 deletions
diff --git a/src/common/platform.h b/src/common/platform.h
index bda3e7be7..0a912dda3 100644
--- a/src/common/platform.h
+++ b/src/common/platform.h
@@ -24,39 +24,9 @@
#pragma once
-#include "common/common_types.h"
-
-////////////////////////////////////////////////////////////////////////////////////////////////////
-// Platform definitions
-
-/// Enumeration for defining the supported platforms
-#define PLATFORM_NULL 0
-#define PLATFORM_WINDOWS 1
-#define PLATFORM_MACOSX 2
-#define PLATFORM_LINUX 3
-#define PLATFORM_ANDROID 4
-
////////////////////////////////////////////////////////////////////////////////////////////////////
// Platform detection
-#ifndef EMU_PLATFORM
-
-#if defined( __WIN32__ ) || defined( _WIN32 )
-#define EMU_PLATFORM PLATFORM_WINDOWS
-
-#elif defined( __APPLE__ ) || defined( __APPLE_CC__ )
-#define EMU_PLATFORM PLATFORM_MACOSX
-
-#elif defined(__linux__)
-#define EMU_PLATFORM PLATFORM_LINUX
-
-#else // Assume linux otherwise
-#define EMU_PLATFORM PLATFORM_LINUX
-
-#endif
-
-#endif
-
#if defined(__x86_64__) || defined(_M_X64) || defined(__aarch64__)
#define EMU_ARCH_BITS 64
#elif defined(__i386) || defined(_M_IX86) || defined(__arm__) || defined(_M_ARM)