Commit 6496ac95 authored by nanahira's avatar nanahira

display another only in title

parent 3e99dc54
......@@ -102,7 +102,7 @@ bool Game::Initialize() {
return false;
}
smgr = device->getSceneManager();
device->setWindowCaption(L"KoishiPro Another");
device->setWindowCaption(L"KoishiPro");
device->setResizable(true);
if(gameConf.window_maximized)
device->maximizeWindow();
......@@ -942,7 +942,7 @@ void Game::MainLoop() {
if(cur_time < fps * 17 - 20)
std::this_thread::sleep_for(std::chrono::milliseconds(20));
if(cur_time >= 1000) {
myswprintf(cap, L"KoishiPro Another FPS: %d", fps);
myswprintf(cap, L"KoishiPro FPS: %d", fps);
device->setWindowCaption(cap);
fps = 0;
cur_time -= 1000;
......
......@@ -11,11 +11,11 @@ BLOCK "StringFileInfo"
BEGIN
BLOCK "080404b0"
BEGIN
VALUE "FileDescription", "KoishiPro Another"
VALUE "InternalName", "KoishiPro Another"
VALUE "FileDescription", "KoishiPro"
VALUE "InternalName", "KoishiPro"
VALUE "LegalCopyright", "Copyright (C) 2019 Nanahira"
VALUE "OriginalFilename", "ygopro_another.exe"
VALUE "ProductName", "KoishiPro Another"
VALUE "ProductName", "KoishiPro"
VALUE "FileVersion", "Lunar"
VALUE "ProductVersion", "Lunar"
END
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment