added missing symbols and fixed hex view

This commit is contained in:
Sean 2020-02-26 21:05:51 -07:00
parent b48d9185f7
commit 533e41649f
4 changed files with 12571 additions and 12564 deletions

BIN
iigs.dat

Binary file not shown.

View File

@ -787,3 +787,6 @@ ShieldCursor() {
UnshieldCursor() {
-4, $e01e9c
}
SystemVolume() {
-4, $e100ca
}

25130
src/iigs.h

File diff suppressed because it is too large Load Diff

View File

@ -230,7 +230,7 @@ void Scanner::dumpHex(std::ostream &f, uint32_t from, uint32_t to) {
f << " ";
ascii += " ";
}
for (; j < 16 && !ptr->eof() && i + j - skip < len; j++) {
for (; j < 16 && !ptr->eof() && from < to; j++) {
if (j == 8) {
f << " ";
ascii += " ";