summaryrefslogtreecommitdiff
path: root/src/common/version.cpp
diff options
context:
space:
mode:
authorGravatar bunnei2014-04-08 23:18:23 -0400
committerGravatar bunnei2014-04-08 23:18:23 -0400
commit5da03e821ef281909e65c3df33f67596074ae98a (patch)
tree15f1bb0f91a88082a21e4e2e4531e1f8dee026bf /src/common/version.cpp
parentfixed licensing and updated code style naming for arm_interface/arm_interpret... (diff)
downloadyuzu-5da03e821ef281909e65c3df33f67596074ae98a.tar.gz
yuzu-5da03e821ef281909e65c3df33f67596074ae98a.tar.xz
yuzu-5da03e821ef281909e65c3df33f67596074ae98a.zip
- removed deprecated version.h
- cleaned up window title - cleaned up emu_window_glfw/emu_window
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;