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_obj_YLzou.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_obj_YLzou.cpp')
| -rw-r--r-- | src/d/actor/d_a_obj_YLzou.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/actor/d_a_obj_YLzou.cpp b/src/d/actor/d_a_obj_YLzou.cpp index 5b8b79ea..5907eaf9 100644 --- a/src/d/actor/d_a_obj_YLzou.cpp +++ b/src/d/actor/d_a_obj_YLzou.cpp @@ -67,7 +67,7 @@ s32 daObjYLzou_c::_create() { } /* 00000AE0-00000B7C .text _delete__12daObjYLzou_cFv */ -BOOL daObjYLzou_c::_delete() { +bool daObjYLzou_c::_delete() { /* Nonmatching */ } @@ -167,12 +167,12 @@ void daObjYLzou_c::setup_action(int) { } /* 00001740-000017D4 .text _execute__12daObjYLzou_cFv */ -BOOL daObjYLzou_c::_execute() { +bool daObjYLzou_c::_execute() { /* Nonmatching */ } /* 000017D4-00001834 .text _draw__12daObjYLzou_cFv */ -BOOL daObjYLzou_c::_draw() { +bool daObjYLzou_c::_draw() { /* Nonmatching */ } |
