Temporary better synchronisation between CPU & APU by decreasing the number of instructions and therefor the number of cycles

This commit is contained in:
Melefo
2020-05-18 11:18:05 +02:00
parent 3ecc5cefd8
commit 7e2c8d99f1
+1 -1
View File
@@ -205,7 +205,7 @@ namespace ComSquare::CPU
{
unsigned cycles = 0;
for (int i = 0; i < 0xFF; i++) {
for (int i = 0; i < 0x18; i++) {
if (this->_isStopped) {
cycles += 1;
continue;