mirror of https://github.com/mgba-emu/mgba.git
GB Video: Clear VRAM on reset (fixes #2152)
This commit is contained in:
parent
5d0f3092f7
commit
f84a8f78ff
1
CHANGES
1
CHANGES
|
@ -1,5 +1,6 @@
|
|||
0.9.2: (Future)
|
||||
Emulation fixes:
|
||||
- GB Video: Clear VRAM on reset (fixes mgba.io/i/2152)
|
||||
- GBA Video: Revert scanline latching changes (fixes mgba.io/i/2153, mgba.io/i/2149)
|
||||
Other fixes:
|
||||
- Core: Fix memory leak in opening games from the library
|
||||
|
|
|
@ -80,6 +80,7 @@ void GBVideoReset(struct GBVideo* video) {
|
|||
video->frameskipCounter = 0;
|
||||
|
||||
GBVideoSwitchBank(video, 0);
|
||||
memset(video->vram, 0, GB_SIZE_VRAM);
|
||||
video->renderer->vram = video->vram;
|
||||
memset(&video->oam, 0, sizeof(video->oam));
|
||||
video->renderer->oam = &video->oam;
|
||||
|
|
Loading…
Reference in New Issue