Fix off by one in discord rpc
This commit is contained in:
parent
ebb86169a9
commit
c5d7fc4a36
1 changed files with 1 additions and 1 deletions
|
|
@ -556,7 +556,7 @@ void DRPC_UpdatePresence(void)
|
|||
{
|
||||
snprintf(detailstr, 48, "%s%s%s",
|
||||
gametype_cons_t[gametype].strvalue,
|
||||
va(" | %s", kartspeed_cons_t[gamespeed].strvalue),
|
||||
va(" | %s", kartspeed_cons_t[gamespeed+1].strvalue),
|
||||
(encoremode == true) ? " | Encore" : ""
|
||||
);
|
||||
discordPresence.details = detailstr;
|
||||
|
|
|
|||
Loading…
Reference in a new issue