5da03e821e
- cleaned up window title - cleaned up emu_window_glfw/emu_window
15 lines
405 B
C++
15 lines
405 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
|
|
#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"
|
|
|