diff options
| author | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-04-10 23:55:17 -0400 |
|---|---|---|
| committer | LagoLunatic <LagoLunatic@users.noreply.github.com> | 2024-04-10 23:55:17 -0400 |
| commit | 282756e6e8f51d6792404ccb9921cefe3b546c2e (patch) | |
| tree | 8f16c2bf06780b33d1bb9a20a04e040573f5f441 /src/d/d_lib.cpp | |
| parent | 95f93e05d715fddc57d50786b6326736658532c5 (diff) | |
fix msgId/msgNo naming mixups
Diffstat (limited to 'src/d/d_lib.cpp')
| -rw-r--r-- | src/d/d_lib.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/d/d_lib.cpp b/src/d/d_lib.cpp index 13aca7f9..e9b32809 100644 --- a/src/d/d_lib.cpp +++ b/src/d/d_lib.cpp @@ -206,12 +206,12 @@ void dLib_setNextStageBySclsNum(u8 i_sclsnum, s8 room_no) { } /* 80057EC0-80057F30 .text dLib_setFirstMsg__FUsUlUl */ -u32 dLib_setFirstMsg(u16 eventBit, u32 firstMsgID, u32 secondMsgID) { +u32 dLib_setFirstMsg(u16 eventBit, u32 firstMsgNo, u32 secondMsgNo) { if (!dComIfGs_isEventBit(eventBit)) { dComIfGs_onEventBit(eventBit); - return firstMsgID; + return firstMsgNo; } else { - return secondMsgID; + return secondMsgNo; } } |
