diff options
| author | Juan Linietsky | 2014-11-19 11:33:15 -0300 |
|---|---|---|
| committer | Juan Linietsky | 2014-11-19 11:33:15 -0300 |
| commit | e709468bb13e795cff72b3e87198c61c5b1a2ee7 (patch) | |
| tree | 11d4a855259498bdaf10719199b506034a802536 /platform/windows | |
| parent | d5cb758d36035fc35e960a466d0b370ff19e4f76 (diff) | |
| download | godot-e709468bb13e795cff72b3e87198c61c5b1a2ee7.tar.gz godot-e709468bb13e795cff72b3e87198c61c5b1a2ee7.tar.zst godot-e709468bb13e795cff72b3e87198c61c5b1a2ee7.zip | |
missing navmesh demo and small fixes
Diffstat (limited to 'platform/windows')
| -rw-r--r-- | platform/windows/os_windows.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index 19bf32491..8eb574694 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -1494,7 +1494,7 @@ OS::Date OS_Windows::get_date() const { OS::Time OS_Windows::get_time() const { SYSTEMTIME systemtime; - GetSystemTime(&systemtime); + GetLocalTime(&systemtime); Time time; time.hour=systemtime.wHour; |
