From 3ce7c0a96a2c2745ed53ef3eb7ce08353fb6c102 Mon Sep 17 00:00:00 2001 From: saschawillems Date: Mon, 21 Mar 2016 22:10:26 +0100 Subject: [PATCH] Restored window title with device info and fps counter --- base/vulkanexamplebase.cpp | 1 - 1 file changed, 1 deletion(-) diff --git a/base/vulkanexamplebase.cpp b/base/vulkanexamplebase.cpp index 879f3965..212061f9 100644 --- a/base/vulkanexamplebase.cpp +++ b/base/vulkanexamplebase.cpp @@ -82,7 +82,6 @@ std::string VulkanExampleBase::getWindowTitle() std::string device(deviceProperties.deviceName); std::string windowTitle; windowTitle = title + " - " + device + " - " + std::to_string(frameCounter) + " fps"; - windowTitle = title; return windowTitle; }