diff options
author | bunnei <ericbunnie@gmail.com> | 2014-04-23 18:43:57 -0700 |
---|---|---|
committer | bunnei <ericbunnie@gmail.com> | 2014-04-23 18:43:57 -0700 |
commit | 4405a53cf3b669e84b1d953d35e89ec29b916293 (patch) | |
tree | f6d4370cfce75d9922e75d99c82e1935c6b723c9 /src/common/emu_window.h | |
parent | 7a136b8a84f9b21e120efe734f86725c46b8531b (diff) |
added scm rev generation on Linux/cmake
Diffstat (limited to 'src/common/emu_window.h')
-rw-r--r-- | src/common/emu_window.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/common/emu_window.h b/src/common/emu_window.h index e70b99ec1..c53d6d7a2 100644 --- a/src/common/emu_window.h +++ b/src/common/emu_window.h @@ -5,6 +5,7 @@ #pragma once #include "common/common.h" +#include "common/scm_rev.h" // Abstraction class used to provide an interface between emulation code and the frontend (e.g. SDL, // QGLWidget, GLFW, etc...) @@ -66,7 +67,7 @@ public: protected: EmuWindow() : m_client_area_width(640), m_client_area_height(480) { char window_title[255]; - sprintf(window_title, "citra-%s", g_scm_rev_str); + sprintf(window_title, "citra-%s", Common::g_scm_desc); m_window_title = window_title; } virtual ~EmuWindow() {} |