Skip to content

Commit

Permalink
fix SysInitMessage for 8.0
Browse files Browse the repository at this point in the history
  • Loading branch information
zivillian committed Aug 3, 2023
1 parent 54f12b3 commit 6f0d359
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion RfpProxy.AaMiDe/AaMiDe/Sys/SysInitMessage.cs
Original file line number Diff line number Diff line change
Expand Up @@ -254,7 +254,7 @@ public SysInitMessage(ReadOnlyMemory<byte> data):base(MsgType.SYS_INIT, data)

int offset = 0x64;
int length = 0x80;
if (Protocol > 0x040000u)
if (Protocol > 0x080000u)
{
offset = 0x70;
length = 0x90;
Expand Down

0 comments on commit 6f0d359

Please sign in to comment.