Fixed imgui window name, including UI.hpp header properly

This commit is contained in:
Vladyslav Baranovskyi
2024-06-11 19:16:20 +03:00
parent efd271e560
commit 15d0a6a669
2 changed files with 2 additions and 2 deletions

View File

@@ -47,7 +47,7 @@ namespace OpenVulkano::Scene::UI
void PerformanceInfo::BeginDraw()
{
bool alwaysShow = true;
ImGui::Begin("Debug Info", &alwaysShow);
ImGui::Begin("Performance Info", &alwaysShow);
}
void PerformanceInfo::Draw()

View File

@@ -6,7 +6,7 @@
#pragma once
#include "Ui.hpp"
#include "UI.hpp"
#include <deque>