From e1005fd4ace41de92fb9d652ce8005cb38e4ec00 Mon Sep 17 00:00:00 2001 From: SanJacobs Date: Fri, 26 Aug 2022 13:20:25 +0200 Subject: Fixed Easter mislocation bug --- src/time.h | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/time.h') diff --git a/src/time.h b/src/time.h index 8ff5ecf..52562bd 100755 --- a/src/time.h +++ b/src/time.h @@ -19,9 +19,9 @@ enum weekday{ }; struct delta{ - signed int minutes; - signed int hours; - signed int days; + unsigned int minutes; + unsigned int hours; + unsigned int days; }; std::ostream& operator<<(std::ostream& stream, const delta& other); -- cgit v1.2.1