diff options
-rw-r--r-- | watch.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -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; |