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 /include/Config.hpp | |
parent | 89512313b263c9b5250b8d51e5e6eb04d0ac43e7 (diff) |
Add option to save replay/recording to a folder with the name of the game
Diffstat (limited to 'include/Config.hpp')
-rw-r--r-- | include/Config.hpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/include/Config.hpp b/include/Config.hpp index dc508cc..575f303 100644 --- a/include/Config.hpp +++ b/include/Config.hpp @@ -67,6 +67,7 @@ namespace gsr { struct RecordConfig { RecordOptions record_options; + bool save_video_in_game_folder = false; bool show_recording_started_notifications = true; bool show_video_saved_notifications = true; std::string save_directory; @@ -78,6 +79,7 @@ namespace gsr { struct ReplayConfig { RecordOptions record_options; bool start_replay_automatically = false; + bool save_video_in_game_folder = false; bool show_replay_started_notifications = true; bool show_replay_stopped_notifications = true; bool show_replay_saved_notifications = true; |