mirror of
https://github.com/overte-org/overte.git
synced 2025-04-05 19:46:41 +02:00
Fix Steam API plugin for latest SDK
This commit is contained in:
parent
e23829962f
commit
24e3777caa
1 changed files with 3 additions and 2 deletions
|
@ -73,7 +73,7 @@ HAuthTicket SteamTicketRequests::startRequest(TicketRequestCallback callback) {
|
||||||
uint32 ticketSize { 0 };
|
uint32 ticketSize { 0 };
|
||||||
char ticket[MAX_TICKET_SIZE];
|
char ticket[MAX_TICKET_SIZE];
|
||||||
|
|
||||||
auto authTicket = SteamUser()->GetAuthSessionTicket(ticket, MAX_TICKET_SIZE, &ticketSize);
|
auto authTicket = SteamUser()->GetAuthSessionTicket(ticket, MAX_TICKET_SIZE, &ticketSize, NULL);
|
||||||
qDebug() << "Got Steam auth session ticket:" << authTicket;
|
qDebug() << "Got Steam auth session ticket:" << authTicket;
|
||||||
|
|
||||||
if (authTicket == k_HAuthTicketInvalid) {
|
if (authTicket == k_HAuthTicketInvalid) {
|
||||||
|
@ -282,7 +282,8 @@ void SteamAPIPlugin::runCallbacks() {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
Steam_RunCallbacks(steamPipe, false);
|
//Steam_RunCallbacks(steamPipe, false);
|
||||||
|
SteamAPI_RunCallbacks();
|
||||||
}
|
}
|
||||||
|
|
||||||
void SteamAPIPlugin::requestTicket(TicketRequestCallback callback) {
|
void SteamAPIPlugin::requestTicket(TicketRequestCallback callback) {
|
||||||
|
|
Loading…
Reference in a new issue