Commit 6496ac95 authored by nanahira's avatar nanahira

display another only in title

parent 3e99dc54
...@@ -102,7 +102,7 @@ bool Game::Initialize() { ...@@ -102,7 +102,7 @@ bool Game::Initialize() {
return false; return false;
} }
smgr = device->getSceneManager(); smgr = device->getSceneManager();
device->setWindowCaption(L"KoishiPro Another"); device->setWindowCaption(L"KoishiPro");
device->setResizable(true); device->setResizable(true);
if(gameConf.window_maximized) if(gameConf.window_maximized)
device->maximizeWindow(); device->maximizeWindow();
...@@ -942,7 +942,7 @@ void Game::MainLoop() { ...@@ -942,7 +942,7 @@ void Game::MainLoop() {
if(cur_time < fps * 17 - 20) if(cur_time < fps * 17 - 20)
std::this_thread::sleep_for(std::chrono::milliseconds(20)); std::this_thread::sleep_for(std::chrono::milliseconds(20));
if(cur_time >= 1000) { if(cur_time >= 1000) {
myswprintf(cap, L"KoishiPro Another FPS: %d", fps); myswprintf(cap, L"KoishiPro FPS: %d", fps);
device->setWindowCaption(cap); device->setWindowCaption(cap);
fps = 0; fps = 0;
cur_time -= 1000; cur_time -= 1000;
......
...@@ -11,11 +11,11 @@ BLOCK "StringFileInfo" ...@@ -11,11 +11,11 @@ BLOCK "StringFileInfo"
BEGIN BEGIN
BLOCK "080404b0" BLOCK "080404b0"
BEGIN BEGIN
VALUE "FileDescription", "KoishiPro Another" VALUE "FileDescription", "KoishiPro"
VALUE "InternalName", "KoishiPro Another" VALUE "InternalName", "KoishiPro"
VALUE "LegalCopyright", "Copyright (C) 2019 Nanahira" VALUE "LegalCopyright", "Copyright (C) 2019 Nanahira"
VALUE "OriginalFilename", "ygopro_another.exe" VALUE "OriginalFilename", "ygopro_another.exe"
VALUE "ProductName", "KoishiPro Another" VALUE "ProductName", "KoishiPro"
VALUE "FileVersion", "Lunar" VALUE "FileVersion", "Lunar"
VALUE "ProductVersion", "Lunar" VALUE "ProductVersion", "Lunar"
END 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