summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMatthias Schiffer <mschiffer@universe-factory.net>2016-02-02 15:26:28 +0100
committerMatthias Schiffer <mschiffer@universe-factory.net>2016-02-02 15:26:28 +0100
commit48f1bb474a4a11697af9c33cb69005da49fbf394 (patch)
treef9f4878409c0f8b6d75b7a640fed6d4061b5dd7b
parentee2f39cbb235da0ceab44c1a027e3f7af6e41d6d (diff)
downloadglslview-48f1bb474a4a11697af9c33cb69005da49fbf394.tar
glslview-48f1bb474a4a11697af9c33cb69005da49fbf394.zip
Fix window title
-rw-r--r--glslview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/glslview.c b/glslview.c
index 1bb84e2..26c9f22 100644
--- a/glslview.c
+++ b/glslview.c
@@ -287,7 +287,7 @@ int main(int argc, char *argv[]) {
SDL_GL_SetAttribute(SDL_GL_BLUE_SIZE, 8);
SDL_GL_SetAttribute(SDL_GL_ALPHA_SIZE, 8);
- SDL_Window *window = SDL_CreateWindow("glslwrite", 0, 0, 800, 800, SDL_WINDOW_OPENGL|SDL_WINDOW_RESIZABLE);
+ SDL_Window *window = SDL_CreateWindow("glslview", 0, 0, 800, 800, SDL_WINDOW_OPENGL|SDL_WINDOW_RESIZABLE);
SDL_GLContext ctx = SDL_GL_CreateContext(window);
filename = argv[1];