View Single Post
BeepIsla
Member
Join Date: Mar 2020
Location: Germany
Old 03-26-2020 , 10:29   Re: [ANY] SteamWorks
Reply With Quote #744

Code:
EGCResults SteamWorks_GCRetrieveMessage(int punMsgType, const char[] pubDest, int cubDest, int pcubMsgSize)
EGCResults SteamWorks_GCSendMessage(int unMsgType, const char[] pubData, int cubData)
These two seem to be slightly broken, "SteamWorks_GCRetrieveMessage" doesn't work at all and "SteamWorks_GCSendMessage" only works if there is no "SteamWorks_GCRetrieveMessage" forward.

Looking at the source on Github it seems to be the fault of lines 132 and 134.

Code:
this->pGCSendMsg
should be

Code:
this->pGCRetMsg
Attempting to fix and compile this myself made the entire extension not do anything anymore while apparently loading successfully. Maybe something related to what SM/MM/SteamWorks version I compile it against though I tried a few different combinations and none worked.

Last edited by BeepIsla; 03-26-2020 at 10:31. Reason: Spelling
BeepIsla is offline