diff options
author | Juan Linietsky <reduzio@gmail.com> | 2015-08-23 20:22:08 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2015-08-23 20:22:08 -0300 |
commit | 4b40f9228bdfe8573a2d70a6cd76404df117c8b9 (patch) | |
tree | fba6e0bf34f1164c966667fd77995e79f2a0ec5d /drivers/unix/os_unix.cpp | |
parent | 07e97414250827c3b930befa123a4bbd48d24861 (diff) | |
parent | e1e54d39e456c32c43442f3a7f5389597e535930 (diff) | |
download | redot-engine-4b40f9228bdfe8573a2d70a6cd76404df117c8b9.tar.gz |
Merge branch 'master' of https://github.com/okamstudio/godot
Diffstat (limited to 'drivers/unix/os_unix.cpp')
-rw-r--r-- | drivers/unix/os_unix.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/drivers/unix/os_unix.cpp b/drivers/unix/os_unix.cpp index f6d9e0fb4e..314e13cee4 100644 --- a/drivers/unix/os_unix.cpp +++ b/drivers/unix/os_unix.cpp @@ -223,6 +223,14 @@ uint64_t OS_Unix::get_unix_time() const { return time(NULL); }; +uint64_t OS_Unix::get_system_time_msec() const { + struct timeval tv_now; + gettimeofday(&tv_now, NULL); + localtime(&tv_now.tv_usec); + uint64_t msec = tv_now.tv_usec/1000; + return msec; +} + OS::Date OS_Unix::get_date(bool utc) const { |