Move members in ksys::mes:: to ksys::

To match the name "ksys::MessageDispatcher"
This commit is contained in:
Léo Lam
2021-01-29 12:42:29 +01:00
parent df910092a4
commit b9ec01bcad
7 changed files with 29 additions and 33 deletions
@@ -223,7 +223,7 @@ Action* ActionBase::getCurrentAction() {
}
}
bool ActionBase::handleMessage(mes::Message* message) {
bool ActionBase::handleMessage(Message* message) {
auto* action = this;
while (!action->handleMessage_(message)) {
action = action->getCurrentChild();
@@ -233,7 +233,7 @@ bool ActionBase::handleMessage(mes::Message* message) {
return true;
}
bool ActionBase::handleMessage2(mes::Message* message) {
bool ActionBase::handleMessage2(Message* message) {
auto* action = this;
while (!action->handleMessage2_(message)) {
action = action->getCurrentChild();
@@ -327,7 +327,7 @@ struct ComplexDefaults {
BaseProcHandle* base_proc_handle;
sead::Vector3f vec3{0, 0, 0};
sead::SafeString string;
mes::TransceiverId transceiver_id;
MesTransceiverId transceiver_id;
};
ComplexDefaults sDefaults;
@@ -357,7 +357,7 @@ BaseProcLink* getDefaultBaseProcLink() {
return &sDefaultBaseProcLink;
}
mes::TransceiverId* getDefaultMesTransceiverId() {
MesTransceiverId* getDefaultMesTransceiverId() {
return &sDefaults.transceiver_id;
}