Try the same calRemainingTime() anomaly-detection code in PCx86 that we've already implemented in PC8080

This commit is contained in:
Jeff Parsons 2016-09-06 11:08:01 -07:00
commit 6fb2f02b13
2 changed files with 11 additions and 1 deletions

View file

@ -1425,7 +1425,9 @@ Computer.prototype.getMachineComponent = function(sType, componentPrev)
}
if (component.type == sType) return component;
}
if (!componentLast) Component.log("Machine component type '" + sType + "' not found", "warning");
if (!componentLast && sType != "FPU") {
Component.log("Machine component type '" + sType + "' not found", "warning");
}
return null;
};