billboard example error fix + string wrapper first implementation

This commit is contained in:
Metehan Tuncbilek
2024-10-16 11:57:05 +03:00
parent 42c94cd05d
commit 5256ef8ff3
3 changed files with 161 additions and 1 deletions

View File

@@ -87,7 +87,7 @@ namespace OpenVulkano
void GraphicsAppManager::UpdateCappedFpsInfo(int32_t newFpsCap)
{
if (newFpsCap < 0)
if (newFpsCap <= 0)
{
cappedFrameTime = std::chrono::microseconds(0);
}