Fixing lvalue errors on linux build

nfd is not yet linking on Linux
This commit is contained in:
2023-05-13 21:32:55 +02:00
parent f7e087ee8d
commit 95f77209cf
6 changed files with 26 additions and 13 deletions

View File

@ -9,7 +9,8 @@ public:
void Update()
{
ImGui::Begin(name.c_str(), false, flags);
ImGui::Begin(name.c_str(), nullptr, flags);
Draw();
ImGui::End();
}