From b99647e67bb4be7367b111ecdac62b1ee9f52f7e Mon Sep 17 00:00:00 2001
From: San Jacobs
Date: Wed, 17 May 2023 02:47:55 +0200
Subject: Fixed a silly weirdness

---
 src/time.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

(limited to 'src')

diff --git a/src/time.cpp b/src/time.cpp
index c9609ad..0aa7bd0 100755
--- a/src/time.cpp
+++ b/src/time.cpp
@@ -94,7 +94,7 @@ delta moment::operator-(const moment& other) const {
 	
 	while(decumulator != benchmark) {
 		wind(decumulator, -1, 0, 0);
-		accumulator.minutes = accumulator.minutes+1;
+		accumulator.minutes++;
 	}
 	while(accumulator.minutes > 59) {
 		accumulator.minutes -= 60;
-- 
cgit v1.2.1