From 3db8eba7fd5ba0318349950b903953293842abd0 Mon Sep 17 00:00:00 2001 From: jdgleaver Date: Tue, 16 Mar 2021 13:14:21 +0000 Subject: [PATCH] Ensure post processing configuration is correctly reset in retro_deinit() --- libretro.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/libretro.c b/libretro.c index a25fb09..cfe635d 100644 --- a/libretro.c +++ b/libretro.c @@ -545,6 +545,8 @@ void retro_deinit(void) gba_processed_pixels = NULL; gba_screen_pixels_prev = NULL; video_post_process = NULL; + post_process_cc = false; + post_process_mix = false; } static retro_time_t retro_perf_dummy_get_time_usec() { return 0; }