summaryrefslogtreecommitdiff
path: root/src/common/version.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/common/version.cpp')
-rw-r--r--src/common/version.cpp12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/common/version.cpp b/src/common/version.cpp
index f0df884d7..2e0c7390c 100644
--- a/src/common/version.cpp
+++ b/src/common/version.cpp
@@ -13,7 +13,7 @@
13 #define BUILD_TYPE_STR "" 13 #define BUILD_TYPE_STR ""
14#endif 14#endif
15 15
16const char *scm_rev_str = "emu " 16const char *g_scm_rev_str =
17#if !SCM_IS_MASTER 17#if !SCM_IS_MASTER
18 "[" SCM_BRANCH_STR "] " 18 "[" SCM_BRANCH_STR "] "
19#endif 19#endif
@@ -35,11 +35,11 @@ const char *scm_rev_str = "emu "
35#endif 35#endif
36 36
37#ifdef _WIN32 37#ifdef _WIN32
38const char *netplay_dolphin_ver = SCM_DESC_STR " W" NP_ARCH; 38const char *g_netplay_citra_ver = SCM_DESC_STR " W" NP_ARCH;
39#elif __APPLE__ 39#elif __APPLE__
40const char *netplay_dolphin_ver = SCM_DESC_STR " M" NP_ARCH; 40const char *g_netplay_citra_ver = SCM_DESC_STR " M" NP_ARCH;
41#else 41#else
42const char *netplay_dolphin_ver = SCM_DESC_STR " L" NP_ARCH; 42const char *g_netplay_citra_ver = SCM_DESC_STR " L" NP_ARCH;
43#endif 43#endif
44 44
45const char *scm_rev_git_str = SCM_REV_STR; 45const char *scm_rev_git_str = SCM_REV_STR;