diff options
author | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-14 00:42:11 +0100 |
---|---|---|
committer | Rémi Verschelde <rverschelde@gmail.com> | 2023-01-14 00:42:11 +0100 |
commit | 81b9c2687212c0fa1182f825edb8b5cfd8a79803 (patch) | |
tree | a1ba4f87117f8790e4a027bf22c678c3dcfa75a9 /main | |
parent | 61c48f69105df5d4c55c77bef7d9428684dda009 (diff) | |
parent | dec0a3ed999555e076a308dbcc3dfdcdb441ab77 (diff) |
Merge pull request #71366 from Scony/fix-navi-process-monitor
Fix 'Navigation Process' monitor initialization
Diffstat (limited to 'main')
-rw-r--r-- | main/performance.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/main/performance.cpp b/main/performance.cpp index 869a947b2a..e24a3673b9 100644 --- a/main/performance.cpp +++ b/main/performance.cpp @@ -316,6 +316,7 @@ uint64_t Performance::get_monitor_modification_time() { Performance::Performance() { _process_time = 0; _physics_process_time = 0; + _navigation_process_time = 0; _monitor_modification_time = 0; singleton = this; } |