summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-12 09:03:03 +0200
committerlat9nq <22451773+lat9nq@users.noreply.github.com>2023-07-12 09:03:03 +0200
commit63a0a1f826e7d7582025fb1550b2c4034bd45b48 (patch)
tree2498430f81583ef3bf9b9785673e9ebb976234eb
parenttime_zone: Swap subtraction order (diff)
downloadyuzu-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
-rw-r--r--src/common/time_zone.cpp2
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 {