From 3ddce6dd450d0d8365f31c73f9f632b1f97165a8 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Mon, 17 Feb 2020 16:58:25 +0100 Subject: [PATCH] fix crash when enabling xBRZ filtering --- core/rend/TexCache.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/core/rend/TexCache.h b/core/rend/TexCache.h index b74091b63..ef5ccf9df 100644 --- a/core/rend/TexCache.h +++ b/core/rend/TexCache.h @@ -74,7 +74,7 @@ public: deinit(); p_buffer_start = p_current_mipmap = p_current_line = p_current_pixel = buffer.p_buffer_start; pixels_per_line = buffer.pixels_per_line; - buffer.p_buffer_start = p_current_mipmap = buffer.p_current_line = buffer.p_current_pixel = NULL; + buffer.p_buffer_start = buffer.p_current_mipmap = buffer.p_current_line = buffer.p_current_pixel = NULL; } void set_mipmap(int level)