diff --git a/core/main.cpp b/core/main.cpp index b13bbd8..060501f 100644 --- a/core/main.cpp +++ b/core/main.cpp @@ -1,5 +1,7 @@ // Copyright 2025 Pound Emulator Project. All rights reserved. +#include + #include "Base/Logging/Backend.h" #include @@ -63,6 +65,7 @@ int main() { bool rendering = true; while (rendering) { + std::this_thread::sleep_for(std::chrono::milliseconds(50)); // Process events. while (SDL_PollEvent(&windowEvent)) { switch (windowEvent.type) {