From 768bf4948d4e5923082faa10d2a166d0f2314973 Mon Sep 17 00:00:00 2001 From: OV2 Date: Sun, 25 May 2014 18:13:28 +0200 Subject: [PATCH] libretro: do not display half-ready interlaced images --- libretro/libretro.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libretro/libretro.cpp b/libretro/libretro.cpp index d10ffc10..f664cf46 100644 --- a/libretro/libretro.cpp +++ b/libretro/libretro.cpp @@ -708,7 +708,7 @@ bool8 S9xDeinitUpdate(int width, int height) bool8 S9xContinueUpdate(int width, int height) { - return S9xDeinitUpdate(width, height); + return true; } // Dummy functions that should probably be implemented correctly later.