From b8e5b2807bccb9fad199900dfbb7a457d7649e2b Mon Sep 17 00:00:00 2001 From: Dan Olson Date: Sun, 29 Oct 2000 20:52:55 +0000 Subject: [PATCH] Change window caption from 'sdlquakeworld' to 'SDLQuake' --- source/vid_sdl.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/vid_sdl.c b/source/vid_sdl.c index 4898e58..11c8ff4 100644 --- a/source/vid_sdl.c +++ b/source/vid_sdl.c @@ -141,7 +141,7 @@ void VID_Init (unsigned char *palette) if (!(screen = SDL_SetVideoMode(vid.width, vid.height, 8, flags))) Sys_Error("VID: Couldn't set video mode: %s\n", SDL_GetError()); VID_SetPalette(palette); - VID_SetCaption("sdlquakeworld"); + VID_SetCaption("SDLQuake"); // now know everything we need to know about the buffer VGA_width = vid.conwidth = vid.width;