summaryrefslogtreecommitdiff
path: root/src/SSystem
diff options
context:
space:
mode:
authorLagoLunatic <LagoLunatic@users.noreply.github.com>2024-02-10 01:09:51 -0500
committerLagoLunatic <LagoLunatic@users.noreply.github.com>2024-02-10 01:09:51 -0500
commitdeb7faebbfde8117c876b7c17248c2f9fb8a8f67 (patch)
treef536e9fde6cb068664e6a7d77beee1aaaf37dee1 /src/SSystem
parent7c983ef0c70e50f5d96eeafefba89ae027183498 (diff)
various cleanup, fix some fakematches
Diffstat (limited to 'src/SSystem')
-rw-r--r--src/SSystem/SComponent/c_bg_s_chk.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/SSystem/SComponent/c_bg_s_chk.cpp b/src/SSystem/SComponent/c_bg_s_chk.cpp
index c14c23f1..6690aecf 100644
--- a/src/SSystem/SComponent/c_bg_s_chk.cpp
+++ b/src/SSystem/SComponent/c_bg_s_chk.cpp
@@ -13,8 +13,8 @@ cBgS_Chk::~cBgS_Chk() {
/* 8024734C-8024738C .text ChkSameActorPid__8cBgS_ChkCFUi */
bool cBgS_Chk::ChkSameActorPid(unsigned int pid) const {
if (mActorPid == fpcM_ERROR_PROCESS_ID_e || pid == UINT32_MAX || unk_0x0C == 0) {
- return 0;
+ return FALSE;
} else {
- return (mActorPid == pid) ? 1 : 0;
+ return (mActorPid == pid) ? TRUE : FALSE;
}
}