UI itself is usable

This commit is contained in:
Simone
2024-01-18 13:13:05 +01:00
parent af7a6c004b
commit 25d1e4c51f
10 changed files with 311 additions and 4 deletions

View File

@@ -0,0 +1,11 @@
#include <EmuThread.hpp>
EmuThread::EmuThread(QObject* parent_object) noexcept : QThread(parent_object) {}
[[noreturn]] void EmuThread::run() noexcept {
while (true) {
if (!core.pause) {
core.Run(0.5, 0.5);
}
}
}