Tidied up some Bus and Disk messages

This commit is contained in:
Jeff 2017-07-20 21:25:54 -07:00 committed by Jeff Parsons
commit d8f98fb263
11 changed files with 57 additions and 56 deletions

View file

@ -2769,13 +2769,13 @@ class FileInfo {
}
}
if (!sSymbol && entryNearest) {
sSymbol = this.sModule + '!' + entryNearest[1] + "+" + Str.toHexWord(cbNearest);
sSymbol = this.sModule + '!' + entryNearest[1] + "+" + Str.toHex(cbNearest, 0, true);
}
break;
}
}
}
return sSymbol || this.sName + '+' + Str.toHexLong(off);
return sSymbol || this.sName + '+' + Str.toHex(off, 0, true);
}
}