Browse Source

Corrected issue with OpenURL()

It was not working on Windows 10
pull/761/head
Ray 6 years ago
parent
commit
75298b50fb
1 changed files with 1 additions and 2 deletions
  1. +1
    -2
      src/core.c

+ 1
- 2
src/core.c View File

@ -1917,14 +1917,13 @@ void OpenURL(const char *url)
char *cmd = (char *)calloc(strlen(url) + 10, sizeof(char));
#if defined(_WIN32)
sprintf(cmd, "explorer '%s'", url);
sprintf(cmd, "explorer %s", url);
#elif defined(__linux__)
sprintf(cmd, "xdg-open '%s'", url); // Alternatives: firefox, x-www-browser
#elif defined(__APPLE__)
sprintf(cmd, "open '%s'", url);
#endif
system(cmd);
free(cmd);
}
}

Loading…
Cancel
Save