mirror of https://github.com/bsnes-emu/bsnes.git
Fix Rumble support in TPP1
This commit is contained in:
parent
42471095e4
commit
763de9d2e0
|
@ -640,6 +640,13 @@ static void write_mbc(GB_gameboy_t *gb, uint16_t addr, uint8_t value)
|
|||
case 0x19:
|
||||
gb->rtc_real.high &= ~0x40;
|
||||
break;
|
||||
|
||||
case 0x20:
|
||||
case 0x21:
|
||||
case 0x22:
|
||||
case 0x23:
|
||||
gb->rumble_strength = value & 3;
|
||||
break;
|
||||
}
|
||||
}
|
||||
break;
|
||||
|
|
Loading…
Reference in New Issue