Add a default URL in testurl

This commit is contained in:
Cameron Cawley 2022-07-01 19:59:06 +01:00 committed by Sam Lantinga
parent 391dd0d94b
commit 0025621b80
1 changed files with 15 additions and 7 deletions

View File

@ -11,6 +11,16 @@
*/
#include "SDL.h"
static void tryOpenURL(const char *url)
{
SDL_Log("Opening '%s' ...", url);
if (SDL_OpenURL(url) == 0) {
SDL_Log(" success!");
} else {
SDL_Log(" failed! %s", SDL_GetError());
}
}
int main(int argc, char **argv)
{
int i;
@ -19,14 +29,12 @@ int main(int argc, char **argv)
return 1;
}
for (i = 1; i < argc; i++) {
const char *url = argv[i];
SDL_Log("Opening '%s' ...", url);
if (SDL_OpenURL(url) == 0) {
SDL_Log(" success!");
} else {
SDL_Log(" failed! %s", SDL_GetError());
if (argc > 1) {
for (i = 1; i < argc; i++) {
tryOpenURL(argv[i]);
}
} else {
tryOpenURL("https://libsdl.org/");
}
SDL_Quit();