diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2021-10-28 10:16:47 -0500 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2021-10-28 10:16:56 -0500 |
commit | 2dabdda36a511e5d1003205ceef1df0dfd401325 (patch) | |
tree | 702a4232a730dde9779ef834641d81951087b33b /core | |
parent | f7d852b5322104a90d45ef63c2ee54c937429487 (diff) |
Update Time documentation
Diffstat (limited to 'core')
-rw-r--r-- | core/os/os.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/core/os/os.h b/core/os/os.h index 6d7bc47407..2700759fef 100644 --- a/core/os/os.h +++ b/core/os/os.h @@ -204,8 +204,8 @@ public: String name; }; - virtual Date get_date(bool local = false) const = 0; - virtual Time get_time(bool local = false) const = 0; + virtual Date get_date(bool p_utc = false) const = 0; + virtual Time get_time(bool p_utc = false) const = 0; virtual TimeZoneInfo get_time_zone_info() const = 0; virtual double get_unix_time() const; |