examples: Print a description of the program to the console on startup.

This commit is contained in:
Ryan C. Gordon 2024-07-30 12:22:39 -04:00
parent a6407e88da
commit 6a25e94472
No known key found for this signature in database
GPG key ID: FA148B892AB48044
11 changed files with 38 additions and 11 deletions

View file

@ -79,9 +79,6 @@ int SDL_AppInit(void **appstate, int argc, char *argv[])
/* SDL_OpenAudioDeviceStream starts the device paused. You have to tell it to start! */
SDL_ResumeAudioStreamDevice(stream);
/* (this is a web browser requirement, not an SDL thing.) */
SDL_Log("If you're running this in a web browser, you need to click the window before you'll hear anything.");
return SDL_APP_CONTINUE; /* carry on with the program! */
}