mirror of
https://github.com/bsnes-emu/bsnes.git
synced 2025-09-03 11:43:07 +02:00
ISX does not support symbols with a bank >FF
This commit is contained in:
@@ -612,12 +612,7 @@ int GB_load_isx(GB_gameboy_t *gb, const char *path)
|
|||||||
name[length] = 0;
|
name[length] = 0;
|
||||||
READ(flag); // unused
|
READ(flag); // unused
|
||||||
|
|
||||||
READ(byte);
|
READ(bank);
|
||||||
bank = byte;
|
|
||||||
if (byte >= 0x80) {
|
|
||||||
READ(byte);
|
|
||||||
bank |= byte << 8;
|
|
||||||
}
|
|
||||||
|
|
||||||
READ(address);
|
READ(address);
|
||||||
address = LE16(address);
|
address = LE16(address);
|
||||||
|
Reference in New Issue
Block a user