Damn it, fixed Linux builds (this time for real?)

This commit is contained in:
MysterD 2020-09-14 23:34:19 -07:00
parent a675f4efd5
commit 7497e42364
1 changed files with 3 additions and 2 deletions

View File

@ -35,6 +35,7 @@ static void get_oauth2_token_callback(UNUSED void* data, enum EDiscordResult res
static void register_launch_command(void) { static void register_launch_command(void) {
char cmd[MAX_LAUNCH_CMD]; char cmd[MAX_LAUNCH_CMD];
int rc;
#if defined(_WIN32) || defined(_WIN64) #if defined(_WIN32) || defined(_WIN64)
HMODULE hModule = GetModuleHandle(NULL); HMODULE hModule = GetModuleHandle(NULL);
if (hModule == NULL) { if (hModule == NULL) {
@ -43,14 +44,14 @@ static void register_launch_command(void) {
} }
GetModuleFileName(hModule, cmd, sizeof(cmd)); GetModuleFileName(hModule, cmd, sizeof(cmd));
#else #else
int rc = readlink("/proc/self/exe", cmd, sizeof(MAX_LAUNCH_CMD) - 1); rc = readlink("/proc/self/exe", cmd, sizeof(MAX_LAUNCH_CMD) - 1);
if (rc) { if (rc) {
LOG_ERROR("unable to retrieve absolute path! rc = %d", rc); LOG_ERROR("unable to retrieve absolute path! rc = %d", rc);
return; return;
} }
#endif #endif
strncat(cmd, " --discord 1", MAX_LAUNCH_CMD - 1); strncat(cmd, " --discord 1", MAX_LAUNCH_CMD - 1);
int rc = app.activities->register_command(app.activities, cmd); rc = app.activities->register_command(app.activities, cmd);
if (rc != DiscordResult_Ok) { if (rc != DiscordResult_Ok) {
LOG_ERROR("register command failed %d", rc); LOG_ERROR("register command failed %d", rc);
return; return;