Remove redundant "== true" code
If it can be compared to a boolean, it can be evaluated as one in-place.
This commit is contained in:
@ -2814,7 +2814,7 @@ void OS_X11::run() {
|
||||
#ifdef JOYDEV_ENABLED
|
||||
joypad->process_joypads();
|
||||
#endif
|
||||
if (Main::iteration() == true)
|
||||
if (Main::iteration())
|
||||
break;
|
||||
};
|
||||
|
||||
|
||||
Reference in New Issue
Block a user