diff options
author | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2022-08-16 20:29:55 +0200 |
---|---|---|
committer | Pedro J. Estébanez <pedrojrulez@gmail.com> | 2022-08-27 13:41:53 +0200 |
commit | 6e647dea2463e8c12dbf8c66ba237545c7a9ed0a (patch) | |
tree | 1b315b5265af8563717c42e1fc03e161117a4fc1 /platform/uwp/os_uwp.cpp | |
parent | f2a61684143af02a8cbe7002645af817607f9bd6 (diff) | |
download | redot-engine-6e647dea2463e8c12dbf8c66ba237545c7a9ed0a.tar.gz |
Remove unused force_quit variable from many OS abstractions
Diffstat (limited to 'platform/uwp/os_uwp.cpp')
-rw-r--r-- | platform/uwp/os_uwp.cpp | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/platform/uwp/os_uwp.cpp b/platform/uwp/os_uwp.cpp index 40f93bb18b..494f5ec4b9 100644 --- a/platform/uwp/os_uwp.cpp +++ b/platform/uwp/os_uwp.cpp @@ -781,7 +781,7 @@ void OS_UWP::run() { int frames = 0; uint64_t frame = 0; - while (!force_quit) { + while (true) { CoreWindow::GetForCurrentThread()->Dispatcher->ProcessEvents(CoreProcessEventsOption::ProcessAllIfPresent); if (managed_object->alert_close_handle) { continue; @@ -811,7 +811,6 @@ bool OS_UWP::_check_internal_feature_support(const String &p_feature) { OS_UWP::OS_UWP() { key_event_pos = 0; - force_quit = false; alt_mem = false; gr_mem = false; shift_mem = false; |