Description: spelling fixes
 use the correct spelling of occurred
Author: Christian T. Steigies <cts@debian.org>
Last-Update: 2018-09-05
Index: vectoroids/vectoroids.c
===================================================================
--- vectoroids.orig/vectoroids.c
+++ vectoroids/vectoroids.c
@@ -1950,7 +1950,7 @@ void setup(int argc, char * argv[])
     {
       fprintf(stderr,
               "\nError: I could not initialize video!\n"
-              "The Simple DirectMedia error that occured was:\n"
+              "The Simple DirectMedia error that occurred was:\n"
               "%s\n\n", SDL_GetError());
       exit(1);
     }
@@ -1965,7 +1965,7 @@ void setup(int argc, char * argv[])
     {
       fprintf(stderr,
               "\nWarning: I could not initialize joystick.\n"
-              "The Simple DirectMedia error that occured was:\n"
+              "The Simple DirectMedia error that occurred was:\n"
               "%s\n\n", SDL_GetError());
       
       use_joystick = 0;
@@ -1991,7 +1991,7 @@ void setup(int argc, char * argv[])
             {
               fprintf(stderr,
                       "\nWarning: Could not open joystick 1.\n"
-                      "The Simple DirectMedia error that occured was:\n"
+                      "The Simple DirectMedia error that occurred was:\n"
                       "%s\n\n", SDL_GetError());
               
               use_joystick = 0;
@@ -2037,7 +2037,7 @@ void setup(int argc, char * argv[])
           fprintf(stderr,
                   "\nWarning: I could not set up fullscreen video for "
                   "%dx%d mode.\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", WIDTH, HEIGHT, SDL_GetError());
           fullscreen = 0;
         }
@@ -2051,7 +2051,7 @@ void setup(int argc, char * argv[])
 	{
 	  fprintf(stderr,
 		  "\nError: I could not open the display.\n"
-		  "The Simple DirectMedia error that occured was:\n"
+		  "The Simple DirectMedia error that occurred was:\n"
 		  "%s\n\n", SDL_GetError());
 	  exit(1);
 	}
@@ -2068,7 +2068,7 @@ void setup(int argc, char * argv[])
       fprintf(stderr,
 	      "\nError: I could not open the background image:\n"
 	      DATA_PREFIX "images/redspot.jpg\n"
-	      "The Simple DirectMedia error that occured was:\n"
+	      "The Simple DirectMedia error that occurred was:\n"
 	      "%s\n\n", SDL_GetError());
       exit(1);
     }
@@ -2079,7 +2079,7 @@ void setup(int argc, char * argv[])
       fprintf(stderr,
 	      "\nError: I couldn't convert the background image"
 	      "to the display format!\n"
-	      "The Simple DirectMedia error that occured was:\n"
+	      "The Simple DirectMedia error that occurred was:\n"
 	      "%s\n\n", SDL_GetError());
       exit(1);
     }
@@ -2095,7 +2095,7 @@ void setup(int argc, char * argv[])
       fprintf(stderr,
 	      "\nError: I could not open the background image:\n"
 	      DATA_PREFIX "images/redspot-e.bmp\n"
-	      "The Simple DirectMedia error that occured was:\n"
+	      "The Simple DirectMedia error that occurred was:\n"
 	      "%s\n\n", SDL_GetError());
       exit(1);
     }
@@ -2106,7 +2106,7 @@ void setup(int argc, char * argv[])
       fprintf(stderr,
 	      "\nError: I couldn't convert the background image"
 	      "to the display format!\n"
-	      "The Simple DirectMedia error that occured was:\n"
+	      "The Simple DirectMedia error that occurred was:\n"
 	      "%s\n\n", SDL_GetError());
       exit(1);
     }
@@ -2125,7 +2125,7 @@ void setup(int argc, char * argv[])
 	  fprintf(stderr,
                   "\nWarning: I could not set up audio for 22050 Hz "
                   "16-bit stereo.\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", SDL_GetError());
           use_sound = FALSE;
 	}
@@ -2144,7 +2144,7 @@ void setup(int argc, char * argv[])
               fprintf(stderr,
                       "\nError: I could not load the sound file:\n"
                       "%s\n"
-                      "The Simple DirectMedia error that occured was:\n"
+                      "The Simple DirectMedia error that occurred was:\n"
                       "%s\n\n", sound_names[i], SDL_GetError());
               exit(1);
             }
@@ -2157,7 +2157,7 @@ void setup(int argc, char * argv[])
 	  fprintf(stderr,
 		  "\nError: I could not load the music file:\n"
 		  "%s\n"
-		  "The Simple DirectMedia error that occured was:\n"
+		  "The Simple DirectMedia error that occurred was:\n"
 		  "%s\n\n", mus_game_name, SDL_GetError());
 	  exit(1);
 	}
@@ -2187,7 +2187,7 @@ void seticon(void)
     {
       fprintf(stderr,
               "\nError: I could not load the icon image: %s\n"
-              "The Simple DirectMedia error that occured was:\n"
+              "The Simple DirectMedia error that occurred was:\n"
               "%s\n\n", DATA_PREFIX "images/icon.png", SDL_GetError());
       exit(1);
     }
