mirror of
https://github.com/zeldaret/tww.git
synced 2026-08-18 13:13:29 -04:00
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.
This commit is contained in:
@@ -52,7 +52,7 @@ s32 daObjMmrr::Act_c::_create() {
|
||||
}
|
||||
|
||||
/* 0000122C-0000126C .text _delete__Q29daObjMmrr5Act_cFv */
|
||||
BOOL daObjMmrr::Act_c::_delete() {
|
||||
bool daObjMmrr::Act_c::_delete() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
@@ -87,12 +87,12 @@ void daObjMmrr::Act_c::eff_remove() {
|
||||
}
|
||||
|
||||
/* 000014D0-000016E8 .text _execute__Q29daObjMmrr5Act_cFv */
|
||||
BOOL daObjMmrr::Act_c::_execute() {
|
||||
bool daObjMmrr::Act_c::_execute() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
/* 000016E8-000017E8 .text _draw__Q29daObjMmrr5Act_cFv */
|
||||
BOOL daObjMmrr::Act_c::_draw() {
|
||||
bool daObjMmrr::Act_c::_draw() {
|
||||
/* Nonmatching */
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user