core: Library cleanup (#1631)

* core: Split error codes into separate files

* Reduces build times and is cleaner

* core: Bring structs and enums to codebase style

* core: More style changes
This commit is contained in:
TheTurtle 2024-11-30 22:37:36 +02:00 committed by GitHub
parent 3d0aacd43d
commit 5b6e0ab238
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
114 changed files with 2158 additions and 2509 deletions

View file

@ -257,9 +257,9 @@ void Emulator::Run(const std::filesystem::path& file) {
linker->Execute();
window->initTimers();
while (window->isOpen()) {
window->waitEvent();
window->InitTimers();
while (window->IsOpen()) {
window->WaitEvent();
}
#ifdef ENABLE_QT_GUI