diff options
| author | hatal175 <hatal175@users.noreply.github.com> | 2024-08-07 13:18:30 +0300 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2024-08-07 03:18:30 -0700 |
| commit | 106d72032c3c62fb5fd930a1044a38bf44cc1036 (patch) | |
| tree | 5b7c2dcddd96f9baaa24cd6df3a7f29efc6df81c /src/d/msg/d_msg_class.cpp | |
| parent | 6bf2f3cc5578f3e3108df8337a462ee4c618915a (diff) | |
Work on d_msg_object (#2186)
Diffstat (limited to 'src/d/msg/d_msg_class.cpp')
| -rw-r--r-- | src/d/msg/d_msg_class.cpp | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/src/d/msg/d_msg_class.cpp b/src/d/msg/d_msg_class.cpp index 0c1d9b2556..a92d45a261 100644 --- a/src/d/msg/d_msg_class.cpp +++ b/src/d/msg/d_msg_class.cpp @@ -1203,26 +1203,26 @@ void jmessage_tReference::resetWord() { /* 80229768-80229788 2240A8 0020+00 3/3 0/0 0/0 .text setCharactor__19jmessage_tReferenceFUs */ void jmessage_tReference::setCharactor(u16 param_0) { - mCharactor[field_0x40c] = param_0; - field_0x40c++; + mCharactor.data[mCharactor.field_0x40c] = param_0; + mCharactor.field_0x40c++; } /* 80229788-802297B0 2240C8 0028+00 3/3 0/0 0/0 .text addCharactor__19jmessage_tReferenceFUs */ void jmessage_tReference::addCharactor(u16 param_0) { - if (param_0 == mCharactor[field_0x40e]) { - field_0x40e++; + if (param_0 == mCharactor.data[mCharactor.field_0x40e]) { + mCharactor.field_0x40e++; } } /* 802297B0-802297E4 2240F0 0034+00 3/3 0/0 0/0 .text resetCharactor__19jmessage_tReferenceFv */ void jmessage_tReference::resetCharactor() { for (int i = 0; i < 0x200; i++) { - mCharactor[i] = 0; + mCharactor.data[i] = 0; } - field_0x40c = 0; - field_0x40e = 0; - mCountBackUp = 0; + mCharactor.field_0x40c = 0; + mCharactor.field_0x40e = 0; + mCharactor.mCountBackUp = 0; } /* 802297E4-80229810 224124 002C+00 0/0 1/1 0/0 .text |
