summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJohnny Richard <johnny@johnnyrichard.com>2021-11-14 01:36:25 +0100
committerJohnny Richard <johnny@johnnyrichard.com>2021-11-14 01:36:25 +0100
commitad3b7b0047c3f1590cbd750c4f3952d3de5d9b5d (patch)
tree2f0dd522e76aa173e7622ab17ebd51544fc561e2
parent25b5544dcf7ee81915006fe940816368ef61c0de (diff)
main.c: Fix SDL initializaiton error message
-rw-r--r--src/main.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/main.c b/src/main.c
index bd31bfb..46b4dee 100644
--- a/src/main.c
+++ b/src/main.c
@@ -48,7 +48,7 @@ main (int argc,
if (SDL_Init(SDL_INIT_VIDEO) < 0) {
fprintf(
stderr,
- "SDL could not initialize! SDL_Error: %s\n",
+ "SDL could not be initialized! SDL_Error: %s\n",
SDL_GetError()
);
return EXIT_FAILURE;