summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--watch.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/watch.c b/watch.c
index 29efe69..6873ec4 100644
--- a/watch.c
+++ b/watch.c
@@ -621,7 +621,7 @@ const char * cVFDWatch::FormatReplayTime(int current, int total, double dFrameRa
int cs = (int)((double)current / dFrameRate);
int ts = (int)((double)total / dFrameRate);
- bool g = ((cs / 3600) > 0) || ((ts / 3600) > 0);
+ bool g = (cs > 3600) || (ts > 3600);
int cm = cs / 60;
cs %= 60;