rnd-20020803-1-src
[rocksndiamonds.git] / src / main.c
index 54d1d6b7da565c5a467703cd6d8aaa7a068f9904..2a0d656655036ea0cbab99364b0d171b9245674f 100644 (file)
@@ -1,7 +1,7 @@
 /***********************************************************
 * Rocks'n'Diamonds -- McDuffin Strikes Back!               *
 *----------------------------------------------------------*
-* (c) 1995-2001 Artsoft Entertainment                      *
+* (c) 1995-2002 Artsoft Entertainment                      *
 *               Holger Schemel                             *
 *               Detmolder Strasse 189                      *
 *               33604 Bielefeld                            *
@@ -150,7 +150,6 @@ struct SoundEffectInfo sound_effects[] =
   { "bd_magic_wall.running",           "miep.wav"              },
   { "bd_amoeba.waiting",               SND_FILE_UNDEFINED      },
   { "bd_amoeba.creating",              "amoebe.wav"            },
-  { "bd_amoeba.growing",               SND_FILE_UNDEFINED      },
   { "bd_amoeba.turning_to_gem",                "pling.wav"             },
   { "bd_amoeba.turning_to_rock",       "klopf.wav"             },
   { "bd_butterfly.moving",             "klapper.wav"           },
@@ -221,7 +220,6 @@ struct SoundEffectInfo sound_effects[] =
   { "magic_wall.running",              "miep.wav"              },
   { "amoeba.waiting",                  SND_FILE_UNDEFINED      },
   { "amoeba.creating",                 "amoebe.wav"            },
-  { "amoeba.growing",                  SND_FILE_UNDEFINED      },
   { "amoeba.dropping",                 SND_FILE_UNDEFINED      },
   { "acid.splashing",                  "blurb.wav"             },
   { "quicksand.filling",               SND_FILE_UNDEFINED      },
@@ -296,10 +294,8 @@ struct SoundEffectInfo sound_effects[] =
   { "time_orb_empty.impact",           "deng.wav"              },
   { "gameoflife.waiting",              SND_FILE_UNDEFINED      },
   { "gameoflife.creating",             "amoebe.wav"            },
-  { "gameoflife.growing",              SND_FILE_UNDEFINED      },
   { "biomaze.waiting",                 SND_FILE_UNDEFINED      },
   { "biomaze.creating",                        "amoebe.wav"            },
-  { "biomaze.growing",                 SND_FILE_UNDEFINED      },
   { "pacman.moving",                   SND_FILE_UNDEFINED      },
   { "pacman.waiting",                  SND_FILE_UNDEFINED      },
   { "pacman.eating_amoeba",            SND_FILE_UNDEFINED      },
@@ -743,5 +739,6 @@ int main(int argc, char *argv[])
 
   EventLoop();
   CloseAllAndExit(0);
-  exit(0);     /* to keep compilers happy */
+
+  return 0;    /* to keep compilers happy */
 }