Hopefully fix ZSM playback by removing obsolete code I forgot about
Some checks failed
Build / build-gentoo (push) Failing after 37s
Build / download-system-deps (push) Successful in 3m17s
Build / get-source-code (push) Successful in 10m18s
Build / build-appimage (push) Successful in 5m21s
Build / build-android (push) Failing after 2m36s
Build / build-windows (push) Failing after 7m3s

This commit is contained in:
Zachary Hall 2024-12-05 08:38:12 -08:00
parent 1756fb40a1
commit 347c968b81

View file

@ -265,9 +265,6 @@ void ZsmBackend::tick(bool step) {
} break; } break;
} }
} }
while (ym_pairs.size() > 0) {
reg_pair pair = ym_pairs.pop();
}
size_t nextCpuClocksInt = std::floor(nextCpuClocks); size_t nextCpuClocksInt = std::floor(nextCpuClocks);
size_t prevCpuClocksInt = std::floor(prevCpuClocks); size_t prevCpuClocksInt = std::floor(prevCpuClocks);
size_t cpuClocksIntDelta = nextCpuClocksInt - prevCpuClocksInt; size_t cpuClocksIntDelta = nextCpuClocksInt - prevCpuClocksInt;