summaryrefslogtreecommitdiff
path: root/src/code/PreRender.c
diff options
context:
space:
mode:
authorengineer124 <47598039+engineer124@users.noreply.github.com>2023-06-05 05:43:12 +1000
committerGitHub <noreply@github.com>2023-06-04 15:43:12 -0400
commit47bc7c12e2d28b8d8ed1cff8df9c17395aefce80 (patch)
tree7ebf8ec3fc5825c4bbe7cf28717d5abd48ce50ba /src/code/PreRender.c
parenta995e4cf6181bab778b89d073a2aa67860d82721 (diff)
Misc Cleanup (#1257)
* a lot of brackets, and some other things * oops * another bracket * check flag all * just a few more... * PR suggestions * PR comment * pr * one more bracket
Diffstat (limited to 'src/code/PreRender.c')
-rw-r--r--src/code/PreRender.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/code/PreRender.c b/src/code/PreRender.c
index 172659cf7..c9f279e75 100644
--- a/src/code/PreRender.c
+++ b/src/code/PreRender.c
@@ -403,7 +403,7 @@ void PreRender_ApplyAntiAliasingFilter(PreRender* this) {
* Applies filters to the framebuffer prerender to make it look smoother
*/
void PreRender_ApplyFilters(PreRender* this) {
- if (this->cvgSave == NULL || this->fbufSave == NULL) {
+ if ((this->cvgSave == NULL) || (this->fbufSave == NULL)) {
this->unk_4D = 0;
} else {
this->unk_4D = 1;