This commit is contained in:
RogueMaster
2022-10-12 00:50:28 -04:00
parent f6baf82b84
commit ed2a57beda
37 changed files with 1659 additions and 1852 deletions

View File

@@ -6,7 +6,7 @@ int32_t timezone_offset_from_hours(float hours) {
uint64_t timezone_offset_apply(uint64_t time, int32_t offset) {
uint64_t for_time_adjusted;
if(offset > 0) {
if (offset > 0) {
for_time_adjusted = time - offset;
} else {
for_time_adjusted = time + (-offset);