Skip to content

Commit a3d8338

Browse files
committed
BBSB Fix from upstream
Bounty Bob Strikes Back! fix from: - libretro/libretro-atari800#87 and - atari800/atari800#123
1 parent ca14c72 commit a3d8338

File tree

1 file changed

+4
-3
lines changed

1 file changed

+4
-3
lines changed

emu/atari.c

+4-3
Original file line numberDiff line numberDiff line change
@@ -294,15 +294,16 @@ UBYTE Atari800_GetByte(UWORD addr) {
294294
case 0x4f00:
295295
case 0x8f00:
296296
CART_BountyBob1(addr);
297-
return 0;
297+
byte = dGetByte(addr);
298+
return byte;
298299
case 0x5f00:
299300
case 0x9f00:
300301
CART_BountyBob2(addr);
301-
return 0;
302+
byte = dGetByte(addr);
303+
return byte;
302304
case 0xbf00:
303305
byte = CART_5200SuperCartGetByte(addr);
304306
return byte;
305-
break;
306307
case 0xd000: /* GTIA */
307308
case 0xc000: /* GTIA - 5200 */
308309
return GTIA_GetByte(addr);

0 commit comments

Comments
 (0)