mirror of https://github.com/mgba-emu/mgba.git
PSP2: Fix tearing issues (fixes #1211)
This commit is contained in:
parent
57066ee13a
commit
7448c96dcc
1
CHANGES
1
CHANGES
|
@ -121,6 +121,7 @@ Bugfixes:
|
||||||
- GB, GBA Savedata: Fix leaks when loading masked save (fixes mgba.io/i/1197)
|
- GB, GBA Savedata: Fix leaks when loading masked save (fixes mgba.io/i/1197)
|
||||||
- Qt: Fix focus issues with load/save state overlay
|
- Qt: Fix focus issues with load/save state overlay
|
||||||
- GB Video: Fix SGB border hole size
|
- GB Video: Fix SGB border hole size
|
||||||
|
- PSP2: Fix tearing issues (fixes mgba.io/i/1211)
|
||||||
Misc:
|
Misc:
|
||||||
- mGUI: Add SGB border configuration option
|
- mGUI: Add SGB border configuration option
|
||||||
- mGUI: Add support for different settings types
|
- mGUI: Add support for different settings types
|
||||||
|
|
|
@ -36,6 +36,7 @@ static void _drawStart(void) {
|
||||||
|
|
||||||
static void _drawEnd(void) {
|
static void _drawEnd(void) {
|
||||||
vita2d_end_drawing();
|
vita2d_end_drawing();
|
||||||
|
vita2d_wait_rendering_done();
|
||||||
vita2d_swap_buffers();
|
vita2d_swap_buffers();
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue