diff options
author | dec05eba <dec05eba@protonmail.com> | 2024-11-04 20:37:26 +0100 |
---|---|---|
committer | dec05eba <dec05eba@protonmail.com> | 2024-11-04 20:37:26 +0100 |
commit | 26a9e750dc6f1313413524cd97e60a94e25a56ec (patch) | |
tree | ce651746328b2a2137d367d2affb82865cf0760f /src/Config.cpp | |
parent | 89512313b263c9b5250b8d51e5e6eb04d0ac43e7 (diff) |
Add option to save replay/recording to a folder with the name of the game
Diffstat (limited to 'src/Config.cpp')
-rw-r--r-- | src/Config.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/Config.cpp b/src/Config.cpp index 95949e8..4bf9101 100644 --- a/src/Config.cpp +++ b/src/Config.cpp @@ -93,6 +93,7 @@ namespace gsr { {"record.record_options.overclock", &config.record_config.record_options.overclock}, {"record.record_options.record_cursor", &config.record_config.record_options.record_cursor}, {"record.record_options.restore_portal_session", &config.record_config.record_options.restore_portal_session}, + {"record.save_video_in_game_folder", &config.record_config.save_video_in_game_folder}, {"record.show_recording_started_notifications", &config.record_config.show_recording_started_notifications}, {"record.show_video_saved_notifications", &config.record_config.show_video_saved_notifications}, {"record.save_directory", &config.record_config.save_directory}, @@ -120,6 +121,7 @@ namespace gsr { {"replay.record_options.record_cursor", &config.replay_config.record_options.record_cursor}, {"replay.record_options.restore_portal_session", &config.replay_config.record_options.restore_portal_session}, {"replay.start_replay_automatically", &config.replay_config.start_replay_automatically}, + {"replay.save_video_in_game_folder", &config.replay_config.save_video_in_game_folder}, {"replay.show_replay_started_notifications", &config.replay_config.show_replay_started_notifications}, {"replay.show_replay_stopped_notifications", &config.replay_config.show_replay_stopped_notifications}, {"replay.show_replay_saved_notifications", &config.replay_config.show_replay_saved_notifications}, |