From 8bb6461c7ae2cea7e205f88ae6cfb020ed7b8a33 Mon Sep 17 00:00:00 2001 From: Kim - DG9VH Date: Wed, 6 Jul 2016 21:15:23 +0200 Subject: [PATCH] Fixing issue 18 Fixing https://github.com/g4klx/YSFClients/issues/18 by setting counter to 0 on startup. --- YSFReflector/YSFReflector.cpp | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/YSFReflector/YSFReflector.cpp b/YSFReflector/YSFReflector.cpp index 092654f..17df638 100644 --- a/YSFReflector/YSFReflector.cpp +++ b/YSFReflector/YSFReflector.cpp @@ -163,7 +163,9 @@ void CYSFReflector::run() ret = network.open(); if (!ret) return; - + + network.setCount(0); + CStopWatch stopWatch; stopWatch.start();