From 90846013c2367e1b836b40adba2f6c3801cbb4ea Mon Sep 17 00:00:00 2001 From: Megamouse Date: Wed, 15 Nov 2023 22:59:36 +0100 Subject: [PATCH] cellRec: fix internal video frame ringbuffer pts --- rpcs3/Emu/Cell/Modules/cellRec.cpp | 1 + 1 file changed, 1 insertion(+) diff --git a/rpcs3/Emu/Cell/Modules/cellRec.cpp b/rpcs3/Emu/Cell/Modules/cellRec.cpp index 19f31c5732..d527065d1f 100644 --- a/rpcs3/Emu/Cell/Modules/cellRec.cpp +++ b/rpcs3/Emu/Cell/Modules/cellRec.cpp @@ -659,6 +659,7 @@ void rec_info::start_video_provider() if (use_ring_buffer) { // The video frames originate from our render pipeline and are stored in a ringbuffer. + frame.pts = pts; video_ringbuffer[next_video_ring_pos()] = std::move(frame); video_ring_frame_count++; }