summaryrefslogtreecommitdiffstats
path: root/src/common
diff options
context:
space:
mode:
authorShizZy <shizzy@6bit.net>2013-09-14 00:11:14 +0200
committerShizZy <shizzy@6bit.net>2013-09-14 00:11:14 +0200
commitb8ca09160b39120d1f55a2016cb652810dbd5619 (patch)
treec831cd66f94e45421f755986e2ffe8b64323d976 /src/common
parentadded scm_rev_gen project to automatically create a header with the git revision on build (diff)
downloadyuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.tar
yuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.tar.gz
yuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.tar.bz2
yuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.tar.lz
yuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.tar.xz
yuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.tar.zst
yuzu-b8ca09160b39120d1f55a2016cb652810dbd5619.zip
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 @@
#ifdef USER_DIR
#define EMU_DATA_DIR USER_DIR
#else
- #define EMU_DATA_DIR ".akiru"
+ #define EMU_DATA_DIR ".citrus"
#endif
#endif
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:
protected:
EmuWindow() : client_area_width_(640), client_area_height_(480) {
char window_title[255];
- sprintf(window_title, "akiru [%s|%s] - %s",
+ sprintf(window_title, "citrus [%s|%s] - %s",
"null-cpu",
"null-renderer",
__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 @@
#define BUILD_TYPE_STR ""
#endif
-const char *scm_rev_str = "Akiru "
+const char *scm_rev_str = "citrus "
#if !SCM_IS_MASTER
"[" SCM_BRANCH_STR "] "
#endif