summaryrefslogtreecommitdiff
path: root/src/common
diff options
context:
space:
mode:
authorGravatar ShizZy2013-09-13 18:11:14 -0400
committerGravatar ShizZy2013-09-13 18:11:14 -0400
commitb8ca09160b39120d1f55a2016cb652810dbd5619 (patch)
treec831cd66f94e45421f755986e2ffe8b64323d976 /src/common
parentadded scm_rev_gen project to automatically create a header with the git revis... (diff)
downloadyuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.tar.gz
yuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.tar.xz
yuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.zip
renamed project to 'citrus'
Diffstat (limited to 'src/common')
-rw-r--r--src/common/src/common_paths.h2
-rw-r--r--src/common/src/emu_window.h2
-rw-r--r--src/common/src/version.cpp2
3 files changed, 3 insertions, 3 deletions
diff --git a/src/common/src/common_paths.h b/src/common/src/common_paths.h
index fae810bf0..1ad887a79 100644
--- a/src/common/src/common_paths.h
+++ b/src/common/src/common_paths.h
@@ -26,7 +26,7 @@
26 #ifdef USER_DIR 26 #ifdef USER_DIR
27 #define EMU_DATA_DIR USER_DIR 27 #define EMU_DATA_DIR USER_DIR
28 #else 28 #else
29 #define EMU_DATA_DIR ".akiru" 29 #define EMU_DATA_DIR ".citrus"
30 #endif 30 #endif
31#endif 31#endif
32 32
diff --git a/src/common/src/emu_window.h b/src/common/src/emu_window.h
index 56ff94819..12b475934 100644
--- a/src/common/src/emu_window.h
+++ b/src/common/src/emu_window.h
@@ -81,7 +81,7 @@ public:
81protected: 81protected:
82 EmuWindow() : client_area_width_(640), client_area_height_(480) { 82 EmuWindow() : client_area_width_(640), client_area_height_(480) {
83 char window_title[255]; 83 char window_title[255];
84 sprintf(window_title, "akiru [%s|%s] - %s", 84 sprintf(window_title, "citrus [%s|%s] - %s",
85 "null-cpu", 85 "null-cpu",
86 "null-renderer", 86 "null-renderer",
87 __DATE__); 87 __DATE__);
diff --git a/src/common/src/version.cpp b/src/common/src/version.cpp
index d5cf10c3d..f4010b6df 100644
--- a/src/common/src/version.cpp
+++ b/src/common/src/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 = "Akiru " 16const char *scm_rev_str = "citrus "
17#if !SCM_IS_MASTER 17#if !SCM_IS_MASTER
18 "[" SCM_BRANCH_STR "] " 18 "[" SCM_BRANCH_STR "] "
19#endif 19#endif