From 605aa52baa59a656e80f3c96131bae7fb885022d Mon Sep 17 00:00:00 2001 From: ekeeke Date: Sun, 28 Mar 2021 09:29:17 +0200 Subject: [PATCH] [Gamecube] fixed switching from progressive to interlaced video mode on startup --- gx/config.c | 3 ++- gx/config.h | 2 +- 2 files changed, 3 insertions(+), 2 deletions(-) diff --git a/gx/config.c b/gx/config.c index 04a7f4d..209ddfc 100644 --- a/gx/config.c +++ b/gx/config.c @@ -3,7 +3,7 @@ * * Genesis Plus GX configuration file support * - * Copyright Eke-Eke (2007-2019) + * Copyright Eke-Eke (2007-2021) * * Redistribution and use of this code or any derivative works are permitted * provided that the following conditions are met: @@ -289,6 +289,7 @@ void config_default(void) { /* switch menu video mode to interlaced */ vmode->viTVMode = (vmode->viTVMode & ~3) | VI_INTERLACE; + vmode->xfbMode = VI_XFBMODE_DF; VIDEO_Configure(vmode); VIDEO_Flush(); VIDEO_WaitVSync(); diff --git a/gx/config.h b/gx/config.h index b55fa9d..353007d 100644 --- a/gx/config.h +++ b/gx/config.h @@ -3,7 +3,7 @@ * * Genesis Plus GX configuration file support * - * Copyright Eke-Eke (2007-2019) + * Copyright Eke-Eke (2007-2021) * * Redistribution and use of this code or any derivative works are permitted * provided that the following conditions are met: