summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorVito Caputo <vcaputo@pengaru.com>2020-04-22 01:21:24 -0700
committerVito Caputo <vcaputo@pengaru.com>2020-04-22 01:21:24 -0700
commitaaffb5a3ca6d90db54dee4dfeaa8e5772ff7d2d2 (patch)
tree2ce8d6bd6209e90a906e8027f5bfb55095757734
parent308f5c6c4ab89a38a055e6915968e81ab47ae45d (diff)
sars: s/Eon/sars/
Never updated the window title after ripping this from the Eon initialization boilerplate
-rw-r--r--src/sars.c4
1 files 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,
© All Rights Reserved