summaryrefslogtreecommitdiff
path: root/Source/Core/Common/Version.cpp
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2014-07-30 02:01:56 -0400
committerLioncash <mathew1800@gmail.com>2014-07-30 02:04:17 -0400
commit22e9d6977b296fbbb7a39b854d05440c19918f7a (patch)
treeb57b24c5fc8fdb6154af0cf477a6cd9fca86b4aa /Source/Core/Common/Version.cpp
parent5516b0382c231f493a3a99cd6ee17e29e6ba13e9 (diff)
Common: State OS instead of 32/64 bit in the netplay lobby
Diffstat (limited to 'Source/Core/Common/Version.cpp')
-rw-r--r--Source/Core/Common/Version.cpp18
1 files changed, 3 insertions, 15 deletions
diff --git a/Source/Core/Common/Version.cpp b/Source/Core/Common/Version.cpp
index 0e282ad7e8..e8ee180a4e 100644
--- a/Source/Core/Common/Version.cpp
+++ b/Source/Core/Common/Version.cpp
@@ -24,24 +24,12 @@ const char *scm_rev_str = "Dolphin "
BUILD_TYPE_STR SCM_DESC_STR;
#endif
-#if _M_X86_64
-#define NP_ARCH "x64"
-#elif _M_ARM_32
-#define NP_ARCH "ARM32"
-#elif _M_ARM_64
-#define NP_ARCH "ARM64"
-#elif _M_X86_32
-#define NP_ARCH "x86"
-#else
-#define NP_ARCH "Unk"
-#endif
-
#ifdef _WIN32
-const char *netplay_dolphin_ver = SCM_DESC_STR " W" NP_ARCH;
+const char *netplay_dolphin_ver = SCM_DESC_STR " Win";
#elif __APPLE__
-const char *netplay_dolphin_ver = SCM_DESC_STR " M" NP_ARCH;
+const char *netplay_dolphin_ver = SCM_DESC_STR " Mac";
#else
-const char *netplay_dolphin_ver = SCM_DESC_STR " L" NP_ARCH;
+const char *netplay_dolphin_ver = SCM_DESC_STR " Lin";
#endif
const char *scm_rev_git_str = SCM_REV_STR;