Update to upstream/master
This commit is contained in:
commit
be3385a8c1
@ -289,9 +289,11 @@ void GB_palette_changed(GB_gameboy_t *gb, bool background_palette, uint8_t index
|
|||||||
void GB_set_color_correction_mode(GB_gameboy_t *gb, GB_color_correction_mode_t mode)
|
void GB_set_color_correction_mode(GB_gameboy_t *gb, GB_color_correction_mode_t mode)
|
||||||
{
|
{
|
||||||
gb->color_correction_mode = mode;
|
gb->color_correction_mode = mode;
|
||||||
for (unsigned i = 0; i < 32; i++) {
|
if (gb->is_cgb) {
|
||||||
GB_palette_changed(gb, false, i * 2);
|
for (unsigned i = 0; i < 32; i++) {
|
||||||
GB_palette_changed(gb, true, i * 2);
|
GB_palette_changed(gb, false, i * 2);
|
||||||
|
GB_palette_changed(gb, true, i * 2);
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -1064,7 +1064,7 @@ static void ld_a_da16(GB_gameboy_t *gb, uint8_t opcode)
|
|||||||
static void di(GB_gameboy_t *gb, uint8_t opcode)
|
static void di(GB_gameboy_t *gb, uint8_t opcode)
|
||||||
{
|
{
|
||||||
/* DI is NOT delayed, not even on a CGB. Mooneye's di_timing-GS test fails on a CGB
|
/* DI is NOT delayed, not even on a CGB. Mooneye's di_timing-GS test fails on a CGB
|
||||||
for different reasons.*/
|
for different reasons. */
|
||||||
GB_advance_cycles(gb, 4);
|
GB_advance_cycles(gb, 4);
|
||||||
gb->ime = false;
|
gb->ime = false;
|
||||||
}
|
}
|
||||||
@ -1073,8 +1073,9 @@ static void ei(GB_gameboy_t *gb, uint8_t opcode)
|
|||||||
{
|
{
|
||||||
/* ei is actually "disable interrupts for one instruction, then enable them". */
|
/* ei is actually "disable interrupts for one instruction, then enable them". */
|
||||||
GB_advance_cycles(gb, 4);
|
GB_advance_cycles(gb, 4);
|
||||||
gb->ime = false;
|
if (!gb->ime && !gb->ime_toggle) {
|
||||||
gb->ime_toggle = true;
|
gb->ime_toggle = true;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
static void ld_hl_sp_r8(GB_gameboy_t *gb, uint8_t opcode)
|
static void ld_hl_sp_r8(GB_gameboy_t *gb, uint8_t opcode)
|
||||||
|
Loading…
Reference in New Issue
Block a user