remove need for window argument since we init with one

This commit is contained in:
SweetId
2023-11-17 12:49:47 +05:30
parent 00fcb37e4a
commit 1a74784143
3 changed files with 8 additions and 6 deletions

View File

@@ -84,7 +84,7 @@ int WinMain(int argc, char* argv[])
}
float deltaTime = updateClock.GetElapsedTime().AsSeconds();
Nz::Imgui::Instance()->Update(window, deltaTime);
Nz::Imgui::Instance()->Update(deltaTime);
if (ImGui::BeginMainMenuBar())
{