diff options
| author | Rémi Verschelde <remi@verschelde.fr> | 2020-12-28 14:44:28 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2020-12-28 14:44:28 +0100 |
| commit | e4c05723858dc6e644ebec4ea89fb6b562052fbd (patch) | |
| tree | 0cf6145956861a4082673da3fc8e7fa9e97d7fab /platform/windows | |
| parent | 891b1cdf2806dc6f454c536962d225c81c0021ca (diff) | |
| parent | d9e9eb8d048bbec5941fa684a5e56d5edc5954d0 (diff) | |
Merge pull request #44593 from madmiraal/rename-mainloop-methods
Rename MainLoop methods to match Node methods
Diffstat (limited to 'platform/windows')
| -rw-r--r-- | platform/windows/os_windows.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/platform/windows/os_windows.cpp b/platform/windows/os_windows.cpp index 451f3bf18c..bdc1f0973f 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -614,7 +614,7 @@ void OS_Windows::run() { if (!main_loop) return; - main_loop->init(); + main_loop->initialize(); while (!force_quit) { DisplayServer::get_singleton()->process_events(); // get rid of pending events @@ -622,7 +622,7 @@ void OS_Windows::run() { break; }; - main_loop->finish(); + main_loop->finalize(); } MainLoop *OS_Windows::get_main_loop() const { |