Skip to content

Commit

Permalink
Fix wrong EMsg in SteamGameCoordinator handleMsg
Browse files Browse the repository at this point in the history
  • Loading branch information
LossyDragon committed Sep 3, 2024
1 parent 0525249 commit 54e0e6e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ class SteamGameCoordinator : ClientMsgHandler() {
* @param packetMsg The packet message that contains the data.
*/
override fun handleMsg(packetMsg: IPacketMsg) {
if (packetMsg.msgType == EMsg.ClientToGC) {
if (packetMsg.msgType == EMsg.ClientFromGC) {
val callback = MessageCallback(packetMsg)
client.postCallback(callback)
}
Expand Down

0 comments on commit 54e0e6e

Please sign in to comment.