Tidied up some Bus and Disk messages
This commit is contained in:
parent
d8cdebae3b
commit
d8f98fb263
11 changed files with 57 additions and 56 deletions
|
|
@ -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);
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue