mirror of
https://github.com/sethm/symon.git
synced 2025-01-29 21:31:21 +00:00
Fix missing repaint on Video Window
This commit is contained in:
parent
742e3a1027
commit
e157217f50
@ -364,6 +364,9 @@ public class Simulator {
|
||||
|
||||
if (videoWindow != null && stepsSinceLastCrtcRefresh++ > stepsBetweenCrtcRefreshes) {
|
||||
stepsSinceLastCrtcRefresh = 0;
|
||||
if (videoWindow.isVisible()) {
|
||||
videoWindow.repaint();
|
||||
}
|
||||
}
|
||||
|
||||
// This is a very expensive update, and we're doing it without
|
||||
|
Loading…
x
Reference in New Issue
Block a user