mirror of
https://github.com/libretro/gambatte-libretro.git
synced 2025-02-17 07:10:19 +00:00
Fix DK94
If I'm reading the comment from guicrith right: https://forums.libretro.com/t/is-there-a-game-boy-color-core-s-that-support-the-bios-boot/5859/62 The correct start value should be 0xCF instead of 0x0F
This commit is contained in:
parent
4ebd68fcaf
commit
f08adc4c49
@ -70,7 +70,7 @@ void GB::Priv::full_init() {
|
||||
// the hw registers must be zeroed out to prevent the logo from being garbled
|
||||
std::memset((void*)(ioamhram + 0x100), 0x00, 0x100);
|
||||
//init values taken from SameBoy
|
||||
ioamhram[0x100] = 0x0F;//joypad initial value
|
||||
ioamhram[0x100] = 0xCF;//joypad initial value
|
||||
ioamhram[0x102] = serialctrl;//serialctrl
|
||||
ioamhram[0x148] = 0xFC;//object palette 0
|
||||
ioamhram[0x149] = 0xFC;//object palette 1
|
||||
|
Loading…
x
Reference in New Issue
Block a user