-overlay-replay > -restart-replay-on-save

This commit is contained in:
dec05eba
2025-01-24 10:09:32 +01:00
parent f036fcbc0f
commit c396a1f922
4 changed files with 6 additions and 6 deletions

View File

@@ -1866,9 +1866,9 @@ namespace gsr {
"-o", output_directory.c_str()
};
if(config.replay_config.restart_replay_on_save && gsr_info.system_info.gsr_version >= GsrVersion{5, 0, 2}) {
args.push_back("-overlap-replay");
args.push_back("no");
if(config.replay_config.restart_replay_on_save && gsr_info.system_info.gsr_version >= GsrVersion{5, 0, 3}) {
args.push_back("-restart-replay-on-save");
args.push_back("yes");
}
add_common_gpu_screen_recorder_args(args, config.replay_config.record_options, audio_tracks, video_bitrate, region, audio_tracks_merged);