Fix boot animation speed issue

This commit is contained in:
Brendan Robert 2024-01-24 10:41:05 -06:00
parent 08f1b4574f
commit 9feb064e83

View File

@ -160,7 +160,7 @@ public class LawlessComputer extends Apple2e {
}
public void waitForVBL(int count) throws InterruptedException {
if (!isRunning()) {
if (getVideo() == null || !getVideo().isRunning()) {
return;
}
Semaphore s = new Semaphore(0);