diff --git a/Stopwatch.py b/Stopwatch.py index ee269b1..02af1bd 100644 --- a/Stopwatch.py +++ b/Stopwatch.py @@ -117,13 +117,13 @@ class Stopwatch: #If the resolution counter reached 3 we may need to change to minutes or hours #Check if seconds is low enough resolution - if(time >= 1000): + if(time >= 120): #If not, change it to minutes time /= 60 resCnt += 1 #Check if minutes is low enough resolution - if(time >= 1000): + if(time >= 120): #If not, change it to hours time /= 60 resCnt += 1