diff options
author | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-12 09:03:03 +0200 |
---|---|---|
committer | lat9nq <22451773+lat9nq@users.noreply.github.com> | 2023-07-12 09:03:03 +0200 |
commit | 63a0a1f826e7d7582025fb1550b2c4034bd45b48 (patch) | |
tree | 2498430f81583ef3bf9b9785673e9ebb976234eb /src/common | |
parent | time_zone: Swap subtraction order (diff) | |
download | yuzu-63a0a1f826e7d7582025fb1550b2c4034bd45b48.tar yuzu-63a0a1f826e7d7582025fb1550b2c4034bd45b48.tar.gz yuzu-63a0a1f826e7d7582025fb1550b2c4034bd45b48.tar.bz2 yuzu-63a0a1f826e7d7582025fb1550b2c4034bd45b48.tar.lz yuzu-63a0a1f826e7d7582025fb1550b2c4034bd45b48.tar.xz yuzu-63a0a1f826e7d7582025fb1550b2c4034bd45b48.tar.zst yuzu-63a0a1f826e7d7582025fb1550b2c4034bd45b48.zip |
Diffstat (limited to '')
-rw-r--r-- | src/common/time_zone.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/common/time_zone.cpp b/src/common/time_zone.cpp index 6131957ef..69e728a9d 100644 --- a/src/common/time_zone.cpp +++ b/src/common/time_zone.cpp @@ -4,13 +4,13 @@ #include <chrono> #include <exception> #include <iomanip> +#include <map> #include <sstream> #include <stdexcept> #include <fmt/chrono.h> #include <fmt/core.h> #include "common/logging/log.h" -#include "common/settings.h" #include "common/time_zone.h" namespace Common::TimeZone { |