2
1
Fork 0
mirror of https://github.com/yuzu-emu/yuzu.git synced 2024-07-04 23:31:19 +01:00

time_zone: Swap subtraction order

This commit is contained in:
lat9nq 2023-07-12 03:02:45 -04:00
parent 13755c0903
commit 9e0d6f7d54

View file

@ -53,7 +53,7 @@ std::chrono::seconds GetCurrentOffsetSeconds() {
// gmt_seconds is a different offset than time(nullptr)
const auto gmt_seconds = TmSpecToSeconds(gmt);
const auto local_seconds = TmSpecToSeconds(local);
const auto seconds_offset = gmt_seconds - local_seconds;
const auto seconds_offset = local_seconds - gmt_seconds;
return std::chrono::seconds{seconds_offset};
}