From 5aa8fc7c880f19ff982d8a9c2f437f2023b81df3 Mon Sep 17 00:00:00 2001 From: Frank-74 Date: Thu, 1 Dec 2016 07:25:11 +0000 Subject: [PATCH] [Glide64] Fix #1224 Fix text display not showing if clear buffer on every frame is off. This text display is mixed up with hotkey_info.. Which is used as timer for display. --- Source/Glide64/Main.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Source/Glide64/Main.cpp b/Source/Glide64/Main.cpp index f55f23315..11e1e06dc 100644 --- a/Source/Glide64/Main.cpp +++ b/Source/Glide64/Main.cpp @@ -2054,7 +2054,7 @@ void newSwapBuffers() g_settings->frame_buffer ^= fb_ref; } } - if (g_settings->buff_clear && (hotkey_info.hk_ref || hotkey_info.hk_motionblur || hotkey_info.hk_filtering)) + if (hotkey_info.hk_ref || hotkey_info.hk_motionblur || hotkey_info.hk_filtering) { set_message_combiner(); char buf[256]; @@ -2444,4 +2444,4 @@ void Android_JNI_SwapWindow() { gfx.SwapBuffers(); } -#endif \ No newline at end of file +#endif