Added Timeout to recorder in User Interface and Settings, and duration

query on Recorder.
This commit is contained in:
brunoherbelin
2020-07-27 23:19:12 +02:00
parent 5010ec85cd
commit e7107ca6c0
5 changed files with 41 additions and 21 deletions

View File

@@ -58,13 +58,17 @@ struct ViewConfig
};
#define RECORD_MAX_TIMEOUT 1800.f
struct RecordConfig
{
std::string path;
int profile;
float timeout;
RecordConfig() : path("") {
profile = 0;
timeout = RECORD_MAX_TIMEOUT;
}
};