diff --git a/Assets/Scripts/VotingPage.cs b/Assets/Scripts/VotingPage.cs index 93469e0..9a97463 100644 --- a/Assets/Scripts/VotingPage.cs +++ b/Assets/Scripts/VotingPage.cs @@ -40,10 +40,7 @@ private void Update() if (DateTime.Now < endOfTimer) { - Debug.Log(DateTime.Now); - Debug.Log(endOfTimer); - Debug.Log((DateTime.Now - endOfTimer).TotalSeconds); - timerLabel.text = (DateTime.Now - endOfTimer).TotalSeconds.ToString("D2"); + timerLabel.text = (endOfTimer - DateTime.Now).TotalSeconds.ToString("D2"); } else {