diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-01-10 18:24:55 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-10 18:24:55 -0300 |
commit | a120c66f98586138fc61fa6f243cb071d60111bc (patch) | |
tree | 61deb7f8b8443bee3e028ad9ae347496eea4e458 /platform/windows/os_windows.h | |
parent | 5b088b41b3147cc19f2d5bc56b762bd5988bc484 (diff) |
-Removed OS.get_system_time_msec(), this is undoable on Windows and also unusable from GDscript due to precision.
-Added, instead an OS.get_system_time_secs(), which is 32 bits friendly, fixes #3143
Diffstat (limited to 'platform/windows/os_windows.h')
-rw-r--r-- | platform/windows/os_windows.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/os_windows.h b/platform/windows/os_windows.h index dfa2b40595..69bdcda278 100644 --- a/platform/windows/os_windows.h +++ b/platform/windows/os_windows.h @@ -231,7 +231,7 @@ public: virtual Time get_time(bool utc) const; virtual TimeZoneInfo get_time_zone_info() const; virtual uint64_t get_unix_time() const; - virtual uint64_t get_system_time_msec() const; + virtual uint64_t get_system_time_secs() const; virtual bool can_draw() const; virtual Error set_cwd(const String& p_cwd); |