From f6a2ebcdd89c879be59485bfa33d78f137d94f4e Mon Sep 17 00:00:00 2001 From: Holger Schemel Date: Fri, 4 Apr 2025 18:13:04 +0200 Subject: [PATCH] fixed updating ffwd/warp tape display when playing native BD replays --- src/tape.c | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/tape.c b/src/tape.c index 88df8cfa..89f3fea3 100644 --- a/src/tape.c +++ b/src/tape.c @@ -1073,7 +1073,13 @@ byte *TapePlayActionExt(boolean bd_replay) return NULL; if (tape.bd_replay && !bd_replay) + { + // skip tape records without game actions for native BD tapes (but update tape display) + if (update_video_display && !tape.deactivate_display) + DrawVideoDisplayCurrentState_PlayAction(update_draw_label_on); + return NULL; + } if (tape.pause_before_end) // stop some seconds before end of tape { -- 2.34.1