summaryrefslogtreecommitdiffstats
path: root/src/citra/citra.h
diff options
context:
space:
mode:
authorbunnei <ericbunnie@gmail.com>2014-04-09 05:18:23 +0200
committerbunnei <ericbunnie@gmail.com>2014-04-09 05:18:23 +0200
commit5da03e821ef281909e65c3df33f67596074ae98a (patch)
tree15f1bb0f91a88082a21e4e2e4531e1f8dee026bf /src/citra/citra.h
parentfixed licensing and updated code style naming for arm_interface/arm_interpreter frontend module (diff)
downloadyuzu-5da03e821ef281909e65c3df33f67596074ae98a.tar
yuzu-5da03e821ef281909e65c3df33f67596074ae98a.tar.gz
yuzu-5da03e821ef281909e65c3df33f67596074ae98a.tar.bz2
yuzu-5da03e821ef281909e65c3df33f67596074ae98a.tar.lz
yuzu-5da03e821ef281909e65c3df33f67596074ae98a.tar.xz
yuzu-5da03e821ef281909e65c3df33f67596074ae98a.tar.zst
yuzu-5da03e821ef281909e65c3df33f67596074ae98a.zip
Diffstat (limited to 'src/citra/citra.h')
-rw-r--r--src/citra/citra.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/citra/citra.h b/src/citra/citra.h
index 5a2c60aac..b9254c5da 100644
--- a/src/citra/citra.h
+++ b/src/citra/citra.h
@@ -4,10 +4,12 @@
#pragma once
-#include "version.h"
+#include <string>
-#define APP_NAME "citra"
-#define APP_VERSION "0.01-" VERSION
-#define APP_TITLE APP_NAME " " APP_VERSION
-#define COPYRIGHT "Copyright (C) 2013 Citra Emulator"
+#include "common/common.h"
+
+#define APP_NAME std::string("citra")
+#define APP_VERSION std::string("0.01-") + std::string(g_scm_rev_str)
+#define APP_TITLE (APP_NAME + " " + APP_VERSION)
+#define COPYRIGHT "Copyright (C) 2014 Citra Emulator"