diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-01 16:17:46 -0500 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2025-02-01 16:17:46 -0500 |
| commit | 025b7e459abad49def5fb68717be6905aaab818d (patch) | |
| tree | 16a8a111c887666ae6fd7125974c2df65045bd23 /src/d/actor/d_a_dai.cpp | |
| parent | 39aace2c919fae101c464e9164d6ed5c274a6cc8 (diff) | |
Switch return type of _execute/_draw/_delete to be `bool` by default instead of `BOOL`
It's not completely consistent, but it seems like the majority used `bool`, and only a handful used `BOOL`. So I switched all of them to `bool` except for 13 TUs that stopped matching when changed like this.
Diffstat (limited to 'src/d/actor/d_a_dai.cpp')
| -rw-r--r-- | src/d/actor/d_a_dai.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/actor/d_a_dai.cpp b/src/d/actor/d_a_dai.cpp index dd8afc28..9f678940 100644 --- a/src/d/actor/d_a_dai.cpp +++ b/src/d/actor/d_a_dai.cpp @@ -7,7 +7,7 @@ #include "d/d_procname.h" /* 00000078-000000C4 .text _delete__7daDai_cFv */ -BOOL daDai_c::_delete() { +bool daDai_c::_delete() { /* Nonmatching */ } @@ -67,7 +67,7 @@ void daDai_c::XyEventCB(int) { } /* 00000C18-00000C78 .text _execute__7daDai_cFv */ -BOOL daDai_c::_execute() { +bool daDai_c::_execute() { /* Nonmatching */ } @@ -77,7 +77,7 @@ void daDai_c::proc() { } /* 00000DE8-00000E48 .text _draw__7daDai_cFv */ -BOOL daDai_c::_draw() { +bool daDai_c::_draw() { /* Nonmatching */ } |
