mirror of https://github.com/mgba-emu/mgba.git
GB Video: Fix LYC regression
This commit is contained in:
parent
ee60736b01
commit
4c9c03eabe
1
CHANGES
1
CHANGES
|
@ -156,6 +156,7 @@ Bugfixes:
|
|||
- Qt: Fix initial window size (fixes mgba.io/i/766)
|
||||
- Qt: Fix data directory path
|
||||
- Qt: Fix controls not saving on non-SDL builds
|
||||
- GB Video: Fix LYC regression
|
||||
Misc:
|
||||
- Qt: Add language selector
|
||||
- GBA Timer: Improve accuracy of timers
|
||||
|
|
|
@ -386,6 +386,7 @@ void GBVideoWriteLYC(struct GBVideo* video, uint8_t value) {
|
|||
video->p->memory.io[REG_IF] |= (1 << GB_IRQ_LCDSTAT);
|
||||
GBUpdateIRQs(video->p);
|
||||
}
|
||||
video->p->memory.io[REG_STAT] = video->stat;
|
||||
}
|
||||
|
||||
void GBVideoWritePalette(struct GBVideo* video, uint16_t address, uint8_t value) {
|
||||
|
|
Loading…
Reference in New Issue