Fix cursor cleanup

This commit is contained in:
Kae 2023-06-28 00:51:02 +10:00
parent efa3872396
commit a1e428fafa

View File

@ -329,6 +329,8 @@ public:
bool quit = false;
while (true) {
cleanup();
for (auto const& event : processEvents())
m_application->processInput(event);
@ -368,8 +370,6 @@ public:
break;
}
m_cursorCache.cleanup();
int64_t spareMilliseconds = round(m_updateTicker.spareTime() * 1000);
if (spareMilliseconds > 0)
Thread::sleepPrecise(spareMilliseconds);