- removed deprecated version.h

- cleaned up window title
- cleaned up emu_window_glfw/emu_window
This commit is contained in:
bunnei 2014-04-08 23:18:23 -04:00
parent d0674cc98b
commit 5da03e821e
10 changed files with 72 additions and 100 deletions

View file

@ -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"