diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-23 19:59:54 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-23 19:59:54 -0500 |
| commit | c4ad9f7241e2f4bf09a88deb62d683796c4d4200 (patch) | |
| tree | ed547fe2bc212092cda87cd3d4ca09b86731de43 /src/d/actor/d_a_lbridge.cpp | |
| parent | 730b74e2e3097297258deee1eb2a68c7f82d1ce2 (diff) | |
Various cleanup
Diffstat (limited to 'src/d/actor/d_a_lbridge.cpp')
| -rw-r--r-- | src/d/actor/d_a_lbridge.cpp | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/src/d/actor/d_a_lbridge.cpp b/src/d/actor/d_a_lbridge.cpp index 82821883..4ba379b3 100644 --- a/src/d/actor/d_a_lbridge.cpp +++ b/src/d/actor/d_a_lbridge.cpp @@ -55,7 +55,11 @@ BOOL daLbridge_c::CreateHeap() { mpBgW = new dBgW(); if (mpBgW != NULL) { - return mpBgW->Set((cBgD_t*)dComIfG_getObjectRes(m_arcname, GBRG00_DZB_HHASHI1), cBgW::MOVE_BG_e, &mMtx) == true ? FALSE : TRUE; + if (mpBgW->Set((cBgD_t*)dComIfG_getObjectRes(m_arcname, GBRG00_DZB_HHASHI1), cBgW::MOVE_BG_e, &mMtx) == true) { + return FALSE; + } else { + return TRUE; + } } return FALSE; |
