It renders something, crashes because ImGui exhausts the display list. Need to find a better way for thread sync. Message queue?

This commit is contained in:
irisz64
2025-05-22 09:16:58 +02:00
parent 668edbcd91
commit 326b4b43cd
7 changed files with 25 additions and 43 deletions

View File

@@ -20,7 +20,6 @@ public:
EmuThread emuThread;
gui::PopupWindow about{"About Kaizen"};
gui::StatusBar statusBar{};
void RenderUI();
int run();
void LoadTAS(const std::string &path) const noexcept;
@@ -29,4 +28,5 @@ private:
bool quit = false;
void handleEvents();
std::function<void()> emuExitFunc;
void RenderUI();
};