From 11a641cc0dd6b78bf7ba47f7564e24dbbdea6edb Mon Sep 17 00:00:00 2001 From: Palakis Date: Thu, 19 Oct 2017 10:09:00 +0200 Subject: [PATCH] replay buffer: update for Advanced output mode --- Utils.cpp | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Utils.cpp b/Utils.cpp index a4588a3a..79182700 100644 --- a/Utils.cpp +++ b/Utils.cpp @@ -452,6 +452,9 @@ bool Utils::ReplayBufferEnabled() { if (strcmp(outputMode, "Simple") == 0) { return config_get_bool(profile, "SimpleOutput", "RecRB"); } + else if (strcmp(outputMode, "Advanced") == 0) { + return config_get_bool(profile, "AdvOut", "RecRB"); + } return false; }