From aaffb5a3ca6d90db54dee4dfeaa8e5772ff7d2d2 Mon Sep 17 00:00:00 2001 From: Vito Caputo Date: Wed, 22 Apr 2020 01:21:24 -0700 Subject: sars: s/Eon/sars/ Never updated the window title after ripping this from the Eon initialization boilerplate --- src/sars.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/sars.c b/src/sars.c index bff0796..5f4019a 100644 --- a/src/sars.c +++ b/src/sars.c @@ -194,7 +194,7 @@ static void * sars_init(play_t *play, int argc, char *argv[]) warn_if(!SDL_SetHint(SDL_HINT_TOUCH_MOUSE_EVENTS, "0"), "Unable to suppress synthetic mouse events on touch"); - sars->window = SDL_CreateWindow("Eon", + sars->window = SDL_CreateWindow("sars", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, sars->window_width, sars->window_height, @@ -206,7 +206,7 @@ static void * sars_init(play_t *play, int argc, char *argv[]) fatal_if(SDL_GL_SetAttribute(SDL_GL_MULTISAMPLEBUFFERS, 0) < 0, "Unable to clear GL multisample buffers attribute"); - sars->window = SDL_CreateWindow("Eon", + sars->window = SDL_CreateWindow("sars", SDL_WINDOWPOS_CENTERED, SDL_WINDOWPOS_CENTERED, sars->window_width, sars->window_height, -- cgit v1.2.3