Fix Rumble support in TPP1

This commit is contained in:
Lior Halphon 2021-04-11 22:52:34 +03:00
parent 42471095e4
commit 763de9d2e0

View File

@ -640,6 +640,13 @@ static void write_mbc(GB_gameboy_t *gb, uint16_t addr, uint8_t value)
case 0x19: case 0x19:
gb->rtc_real.high &= ~0x40; gb->rtc_real.high &= ~0x40;
break; break;
case 0x20:
case 0x21:
case 0x22:
case 0x23:
gb->rumble_strength = value & 3;
break;
} }
} }
break; break;