This commit is contained in:
wheremyfoodat 2023-10-20 01:12:22 +03:00
parent 1c50ca065d
commit c0c3153cd8
3 changed files with 10 additions and 10 deletions

View file

@ -75,7 +75,6 @@ FrontendSDL::FrontendSDL() {
}
bool FrontendSDL::loadROM(const std::filesystem::path& path) { return emu.loadROM(path); }
void FrontendSDL::run() { emu.run(this); }
void Emulator::run(void* frontend) {
@ -352,7 +351,6 @@ void Emulator::run(void* frontend) {
// TODO: Should this be uncommented?
// kernel.evalReschedule();
// Update inputs in the HID module
SDL_GL_SwapWindow(frontendSDL->window);
}
}