-
Notifications
You must be signed in to change notification settings - Fork 97
[#5155] Cleaned up unnecessary fake bool usage where appropriate #5156
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
[#5155] Cleaned up unnecessary fake bool usage where appropriate #5156
Conversation
8203e3f to
ac4d7c1
Compare
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This header seems to be unused.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This header seems to be unused, too.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This file also seems to be unused.
ac4d7c1 to
9543002
Compare
|
Dealing with the unused files if they are wanted to be removed is probably best done in another PR as it is out of scope of the current issue. No harm in fixing the fake bools in them in this one though even if unused. |
Pulled that one in, looks like there are conflicts in this PR now. |
Signed-off-by: Hecklezz <[email protected]>
9543002 to
55cc966
Compare
All done, should be no conflicts now. |
Issue: #5155
Note: Probably best to wait for Rye's other PR to be merged first and then I'll rebase this one, as there will be a couple conflicts with him deleting source files- #5153MergedSimply cleans up usages of fake bools where a regular bool is more appropriate, or where function declarations expect a regular bool but a fake bool was used instead.
Fake bool usages in existing APIs such as WinAPI or gtk and others were left untouched as to follow the standards of those libraries.
I also didn't update the fake bool usage for LLPathingLib::createPhysicsCapsuleRep because this would require a change in the LL Havok library to avoid any implicit conversions.