Update gbnp.js

Fix iG 32KB RAM incrementing from 8 to 4
This commit is contained in:
Alex 2020-10-11 01:22:49 +10:00 committed by GitHub
parent 7b728b9cef
commit 3000806998
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -462,7 +462,7 @@ class Processor {
offsets.ram += 2;
}
else if (rom.ramByte == 3) { // 32KB
offsets.ram += 8;
offsets.ram += 4;
}
}