Fix imgui support + update README.md

This commit is contained in:
CocoSimone
2022-08-19 23:42:15 +02:00
parent 02636d38b6
commit 7962ae12e3
31 changed files with 53895 additions and 29 deletions

View File

@@ -47,9 +47,9 @@ void Core::Run(Window& window) {
InterruptRaise(mmio.mi, cpu.regs, Interrupt::VI);
}
UpdateScreenParallelRdp(window, GetVI());
UpdateScreenParallelRdp(*this, window, GetVI());
} else {
UpdateScreenParallelRdpNoGame(window);
UpdateScreenParallelRdpNoGame(*this, window);
}
}
}