summaryrefslogtreecommitdiff
path: root/examples/example_rwops.c
diff options
context:
space:
mode:
Diffstat (limited to 'examples/example_rwops.c')
-rw-r--r--examples/example_rwops.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/example_rwops.c b/examples/example_rwops.c
index 84370f1..96a3655 100644
--- a/examples/example_rwops.c
+++ b/examples/example_rwops.c
@@ -27,7 +27,7 @@ int main(int argc, char *argv[]) {
// Get filename to open
if(argc != 2) {
- fprintf(stderr, "Usage: custom <filename>\n");
+ fprintf(stderr, "Usage: rwops <filename>\n");
return 0;
}
filename = argv[1];
@@ -40,7 +40,7 @@ int main(int argc, char *argv[]) {
}
// Create a resizable window.
- window = SDL_CreateWindow("Example Player", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 1280, 720, SDL_WINDOW_RESIZABLE);
+ window = SDL_CreateWindow(filename, SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, 1280, 720, SDL_WINDOW_RESIZABLE);
if(window == NULL) {
fprintf(stderr, "Unable to create a new window!\n");
return 1;