diff options
author | Aaron Franke <arnfranke@yahoo.com> | 2018-10-03 13:40:37 -0400 |
---|---|---|
committer | Aaron Franke <arnfranke@yahoo.com> | 2018-10-06 16:12:36 -0400 |
commit | 37386f112bafa9c4e94c342f6d5f04392a5623f7 (patch) | |
tree | 23870a98dd815447693154dedcb054e88a20e694 /platform/windows | |
parent | ffe94ef4e2dc28e69337f53f58d0fa60e23607a8 (diff) |
Remove redundant "== true" code
If it can be compared to a boolean, it can be evaluated as one in-place.
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 e8c209c0fc..a2dddf172f 100644 --- a/platform/windows/os_windows.cpp +++ b/platform/windows/os_windows.cpp @@ -2737,7 +2737,7 @@ void OS_Windows::run() { while (!force_quit) { process_events(); // get rid of pending events - if (Main::iteration() == true) + if (Main::iteration()) break; }; |