pawbyte / Game-Pencil-Engine-Editor

Game Pencil Engine a game engine written from the ground up.
https://gamepencil.net/
MIT License
101 stars 20 forks source link

Code Correction - Fix |warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]| warnings #143

Closed nhurde closed 3 weeks ago

nhurde commented 3 weeks ago

When recompiling, I noticed that there are numerous locations where "|warning: suggest parentheses around comparison in operand of '&' [-Wparentheses]|" is a problem. This is a result of numerous types of only using one "&" symbol versus the two "&&" for AND.

Correct all of these locations and ensure proper code usability.

nhurde commented 3 weeks ago

PR merged via - https://github.com/pawbyte/Game-Pencil-Engine-Editor/pull/147