Fix all linking errors, now figure out segfault on vkCreateInstance (Window.cpp:45)

This commit is contained in:
Simone Coco
2022-08-03 18:25:59 +02:00
committed by CocoSimone
parent a54f2cbfb7
commit 17f7ab06a4
9 changed files with 38 additions and 9 deletions

View File

@@ -376,9 +376,10 @@ void Window::Update(std::unique_ptr<BaseCore>& core) {
}
}
if(ImGui::MenuItem("Game Boy")) {
ImGui::BeginPopup("##unimplemented_Core");
ImGui::TextColored({1.0, 0.0, 0.0, 0.7}, "Unimplemented core 'Game Boy'!");
ImGui::EndPopup();
if(ImGui::BeginPopup("##unimplemented_Core")) {
ImGui::TextColored({1.0, 0.0, 0.0, 0.7}, "Unimplemented core 'Game Boy'!");
ImGui::EndPopup();
}
}
ImGui::EndMenu();
}