From fb018da66a8412322c5eb721d2d3966d53562a15 Mon Sep 17 00:00:00 2001 From: Tom Early Date: Tue, 29 Jan 2019 11:32:47 -0700 Subject: [PATCH] fixed bug with timing_play_delay --- QnetDVRPTR.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/QnetDVRPTR.cpp b/QnetDVRPTR.cpp index b389f86..e707924 100644 --- a/QnetDVRPTR.cpp +++ b/QnetDVRPTR.cpp @@ -1905,7 +1905,7 @@ static bool read_config(const char *cfgFile) path.assign("timing_"); cfg.GetValue(path+"timeout_remote_g2", estr, REMOTE_TIMEOUT, 1, 10); - cfg.GetValue(path+"_play_delay", estr, DELAY_BETWEEN, 10, 25); + cfg.GetValue(path+"play_delay", estr, DELAY_BETWEEN, 10, 25); DELAY_BETWEEN *= 1000; inactiveMax = (REMOTE_TIMEOUT * 1000000) / 400;