Discord Invite Fixes + DUMPCONSISTENCY flag for makefile

This commit is contained in:
JugadorXEI 2021-04-13 00:33:06 +02:00
parent 6e33b5281d
commit d7e8642236
2 changed files with 6 additions and 5 deletions

View File

@ -515,6 +515,10 @@ ifdef ZDEBUG
CPPFLAGS+=-DZDEBUG
endif
ifdef DUMPCONSISTENCY
CPPFLAGS+=-DDUMPCONSISTENCY
endif
ifdef DEVELOP
CPPFLAGS+=-DDEVELOP
endif

View File

@ -361,7 +361,7 @@ static const char *DRPC_GetServerIP(void)
{
// We're not the server, so we could successfully get the IP!
// No need to do anything else :)
sprintf(self_ip, "%s:%u", address, current_port);
strcpy(self_ip, address);
return self_ip;
}
}
@ -461,10 +461,7 @@ void DRPC_UpdatePresence(void)
// Grab the host's IP for joining.
if ((join = DRPC_GetServerIP()) != NULL)
{
char *xorjoin = DRPC_XORIPString(join);
discordPresence.joinSecret = xorjoin;
free(xorjoin);
discordPresence.joinSecret = DRPC_XORIPString(join);
joinSecretSet = true;
}
}