Description: spelling fixes
 use the correct spelling of occurred
Author: Christian T. Steigies <cts@debian.org>
Last-Update: 2016-02-15
Index: madbomber-0.2.5/madbomber.c
===================================================================
--- madbomber-0.2.5.orig/madbomber.c
+++ madbomber-0.2.5/madbomber.c
@@ -2674,7 +2674,7 @@ void setup(void)
     {
       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);
     }
@@ -2688,7 +2688,7 @@ void setup(void)
 	{
 	  fprintf(stderr,
 		  "\nWarning: I could not initialize audio!\n"
-		  "The Simple DirectMedia error that occured was:\n"
+		  "The Simple DirectMedia error that occurred was:\n"
 		  "%s\n\n", SDL_GetError());
 	  use_sound = 0;
 	}
@@ -2705,7 +2705,7 @@ void setup(void)
           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 = 0;
         }
@@ -2723,7 +2723,7 @@ void setup(void)
 	  fprintf(stderr,
 		  "\nWarning: I could not set up fullscreen video for "
 		  "640x480 mode.\n"
-		  "The Simple DirectMedia error that occured was:\n"
+		  "The Simple DirectMedia error that occurred was:\n"
 		  "%s\n\n", SDL_GetError());
 	  use_fullscreen = 0;
 	}
@@ -2738,7 +2738,7 @@ void setup(void)
 	{
 	  fprintf(stderr,
 		  "\nError: I could not set up video for 640x480 mode.\n"
-		  "The Simple DirectMedia error that occured was:\n"
+		  "The Simple DirectMedia error that occurred was:\n"
 		  "%s\n\n", SDL_GetError());
 	  exit(1);
 	}
@@ -2749,7 +2749,7 @@ void setup(void)
 	{
 	  fprintf(stderr,
 		  "\nError: I could not set up video for 240x320 mode.\n"
-		  "The Simple DirectMedia error that occured was:\n"
+		  "The Simple DirectMedia error that occurred was:\n"
 		  "%s\n\n", SDL_GetError());
 	  exit(1);
 	}
@@ -2779,7 +2779,7 @@ void setup(void)
 	  fprintf(stderr,
                   "\nError: I couldn't load a graphics file:\n"
                   "%s\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", image_names[i], SDL_GetError());
           exit(1);
 	}
@@ -2791,7 +2791,7 @@ void setup(void)
 	  fprintf(stderr,
                   "\nError: I couldn't load a graphics file:\n"
                   "%s\n"
-                  "The Simple DirectMedia error that occured was:\n"
+                  "The Simple DirectMedia error that occurred was:\n"
                   "%s\n\n", image_names[i], SDL_GetError());
           exit(1);
 	}
@@ -2807,7 +2807,7 @@ void setup(void)
 	  fprintf(stderr,
 		  "\nError: I couldn't convert a file to the display format:\n"
 		  "%s\n"
-		  "The Simple DirectMedia error that occured was:\n"
+		  "The Simple DirectMedia error that occurred was:\n"
 		  "%s\n\n", image_names[i], SDL_GetError());
 	  exit(1);
 	}
@@ -2820,7 +2820,7 @@ void setup(void)
 	  fprintf(stderr,
 		  "\nError: I could not set the color key for the file:\n"
 		  "%s\n"
-		  "The Simple DirectMedia error that occured was:\n"
+		  "The Simple DirectMedia error that occurred was:\n"
 		  "%s\n\n", image_names[i], SDL_GetError());
 	  exit(1);
 	}
@@ -2957,7 +2957,7 @@ void setup(void)
 	      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);
 	    }
@@ -2997,7 +2997,7 @@ void setup(void)
 	  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_TITLE, SDL_GetError());
 	  exit(1);
 	}
@@ -3010,7 +3010,7 @@ void setup(void)
 	  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_TITLE, SDL_GetError());
 	  exit(1);
 	}
@@ -3025,7 +3025,7 @@ void setup(void)
 	      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", game_music_names[i], SDL_GetError());
 	      exit(1);
 	    }
@@ -4188,7 +4188,7 @@ FILE * open_option_file(char * mode)
 	fprintf(stderr, "for write:");
       
      fprintf(stderr, "\n%s\n"
-	      "The error that occured was:\n"
+	      "The error that occurred was:\n"
 	      "%s\n\n", filename, strerror(errno));
     }
   
@@ -4237,7 +4237,7 @@ FILE * open_state_file(char * mode)
 	fprintf(stderr, "for write:");
       
      fprintf(stderr, "\n%s\n"
-	      "The error that occured was:\n"
+	      "The error that occurred was:\n"
 	      "%s\n\n", filename, strerror(errno));
     }
   
@@ -5154,7 +5154,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);
     }
