summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorLeo Tenenbaum <leonardomtenenbaum@gmail.com>2017-08-19 18:09:32 -0400
committerGitHub <noreply@github.com>2017-08-19 18:09:32 -0400
commit59dd99ff563b2dd1500328b042a2be0185d0eff3 (patch)
treee90990ec511bdfe550a9c8c34b88c5385a12ff3a
parent912d8daaecce3efd6d7bd62fc9a2b53ce8ac579f (diff)
Changed window titleHEADmaster
-rw-r--r--src/sdlutils.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/sdlutils.h b/src/sdlutils.h
index a3dbbaf..9a9d56e 100644
--- a/src/sdlutils.h
+++ b/src/sdlutils.h
@@ -243,7 +243,7 @@ void sdlutils_init(int width, int height)
fprintf(stderr, "SDL_ttf could not initialize! SDL_ttf Error: %s\n", TTF_GetError());
}
- window = SDL_CreateWindow("Life", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, width, height, SDL_WINDOW_SHOWN);
+ window = SDL_CreateWindow("A framework for genetic algorithms", SDL_WINDOWPOS_UNDEFINED, SDL_WINDOWPOS_UNDEFINED, width, height, SDL_WINDOW_SHOWN);
if (window == NULL)
{
fprintf(stderr, "SDL Error: %s\n", SDL_GetError());