examples: Fix window titles.

This commit is contained in:
Ryan C. Gordon 2024-07-23 17:52:24 -04:00
parent 35a1cf910a
commit ea137cfbaf
No known key found for this signature in database
GPG key ID: FA148B892AB48044
3 changed files with 3 additions and 3 deletions

View file

@ -24,7 +24,7 @@ int SDL_AppInit(void **appstate, int argc, char *argv[])
return SDL_APP_FAILURE;
}
if (SDL_CreateWindowAndRenderer("examples/renderer/clear", 640, 480, 0, &window, &renderer) == -1) {
if (SDL_CreateWindowAndRenderer("examples/renderer/primitives", 640, 480, 0, &window, &renderer) == -1) {
SDL_ShowSimpleMessageBox(SDL_MESSAGEBOX_ERROR, "Couldn't create window/renderer!", SDL_GetError(), NULL);
return SDL_APP_FAILURE;
}