Fix broken live register display

This commit is contained in:
Jeff Parsons 2015-05-18 16:29:43 -07:00 committed by jeffpar
commit e3a582976a

View file

@ -3700,7 +3700,7 @@ X86CPU.prototype.updateReg = function(sReg, nValue)
}
if (this.model < 80386) {
if (sReg.length > 2) {
sReg = sReg.substr(0, 2);
sReg = sReg.substr(1, 2);
}
} else {
if (sReg == "PS" || sReg.length > 2) {