Restored window title with device info and fps counter

This commit is contained in:
saschawillems 2016-03-21 22:10:26 +01:00
parent e3c26e01ac
commit 3ce7c0a96a

View file

@ -82,7 +82,6 @@ std::string VulkanExampleBase::getWindowTitle()
std::string device(deviceProperties.deviceName); std::string device(deviceProperties.deviceName);
std::string windowTitle; std::string windowTitle;
windowTitle = title + " - " + device + " - " + std::to_string(frameCounter) + " fps"; windowTitle = title + " - " + device + " - " + std::to_string(frameCounter) + " fps";
windowTitle = title;
return windowTitle; return windowTitle;
} }