Merge pull request #12 from hilorioze/fix/revemu-auth-key-logging

fix: correct `volumeId` logging in RevEmu authorization
This commit is contained in:
Dmitry Novikov 2025-07-30 23:58:04 +07:00 committed by GitHub
commit 59caa7c1b2
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -108,7 +108,7 @@ void RevEmuFinishAuthorization(authdata_t* authdata, const char* authStr, size_t
authdata->steamId = revHash(authdata->authKey) << 1; authdata->steamId = revHash(authdata->authKey) << 1;
if (authStr == (char *)&volumeId) if (authStr == (char *)&volumeId)
LCPrintf(false, "RevEmu auth key: '%u' steamid: %u\n", (uint32_t)authStr, authdata->steamId); LCPrintf(false, "RevEmu auth key: '%u' steamid: %u\n", volumeId, authdata->steamId);
else else
LCPrintf(false, "RevEmu auth key: '%s' steamid: %u\n", authStr, authdata->steamId); LCPrintf(false, "RevEmu auth key: '%s' steamid: %u\n", authStr, authdata->steamId);
} }