Skip to content

Commit

Permalink
Merge pull request #8 from zircon-tpl/resolve-character-selection
Browse files Browse the repository at this point in the history
Resolves character selection issues in various content ID slots
  • Loading branch information
zircon-tpl authored Jul 18, 2020
2 parents 59434e3 + eabddb7 commit d76814d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion xiloader/network.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -479,7 +479,7 @@ namespace xiloader
characterList[0x18 + (x * 0x68)] = 0x20;
characterList[0x28 + (x * 0x68)] = 0x20;

memcpy(characterList + 0x04 + (x * 0x68), recvBuffer + 0x14 * (x + 1), 4); // Character Id
memcpy(characterList + 0x04 + (x * 0x68), recvBuffer + (0x10 * (x + 1)) + 0x04, 4); // Character Id
memcpy(characterList + 0x08 + (x * 0x68), recvBuffer + 0x10 * (x + 1), 4); // Content Id
}
sendSize = 0;
Expand Down

0 comments on commit d76814d

Please sign in to comment.