From 7b175496ce7866a2b29d808b5fd30608b25801ac Mon Sep 17 00:00:00 2001 From: Francisco Javier Trujillo Mata Date: Fri, 11 Jan 2019 14:42:47 +0100 Subject: [PATCH] [PS2] Clean screen before the core start --- gfx/drivers/ps2_gfx.c | 1 + 1 file changed, 1 insertion(+) diff --git a/gfx/drivers/ps2_gfx.c b/gfx/drivers/ps2_gfx.c index e89d2d6322..58dbce4d7b 100644 --- a/gfx/drivers/ps2_gfx.c +++ b/gfx/drivers/ps2_gfx.c @@ -69,6 +69,7 @@ static GSGLOBAL *init_GSGlobal(void) gsKit_init_screen(gsGlobal); gsKit_mode_switch(gsGlobal, GS_ONESHOT); + gsKit_clear(gsGlobal, GS_BLACK); return gsGlobal; }