summaryrefslogtreecommitdiff
path: root/src/SSystem
diff options
context:
space:
mode:
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;
}
}