updated contact info in source file headers
[rocksndiamonds.git] / src / libgame / misc.c
index dbcd7fdb608661b55e9a9acaff9f6b7b960c08be..8a7c94d60acd22985fb44830cd165acf05a34732 100644 (file)
@@ -1,15 +1,13 @@
-/***********************************************************
-* Artsoft Retro-Game Library                               *
-*----------------------------------------------------------*
-* (c) 1994-2006 Artsoft Entertainment                      *
-*               Holger Schemel                             *
-*               Detmolder Strasse 189                      *
-*               33604 Bielefeld                            *
-*               Germany                                    *
-*               e-mail: info@artsoft.org                   *
-*----------------------------------------------------------*
-* misc.c                                                   *
-***********************************************************/
+// ============================================================================
+// Artsoft Retro-Game Library
+// ----------------------------------------------------------------------------
+// (c) 1995-2014 by Artsoft Entertainment
+//                         Holger Schemel
+//                 info@artsoft.org
+//                 http://www.artsoft.org/
+// ----------------------------------------------------------------------------
+// misc.c
+// ============================================================================
 
 #include <time.h>
 #include <sys/time.h>
@@ -873,13 +871,6 @@ void GetOptions(char *argv[],
 
       exit(0);
     }
-    else if (strncmp(option, "-version", option_len) == 0 ||
-            strncmp(option, "-V", option_len) == 0)
-    {
-      print_version_function();
-
-      exit(0);
-    }
     else if (strncmp(option, "-display", option_len) == 0)
     {
       if (option_arg == NULL)
@@ -951,10 +942,6 @@ void GetOptions(char *argv[],
     {
       options.serveronly = TRUE;
     }
-    else if (strncmp(option, "-verbose", option_len) == 0)
-    {
-      options.verbose = TRUE;
-    }
     else if (strncmp(option, "-debug", option_len) == 0)
     {
       options.debug = TRUE;
@@ -963,6 +950,17 @@ void GetOptions(char *argv[],
     {
       options.debug_x11_sync = TRUE;
     }
+    else if (strncmp(option, "-verbose", option_len) == 0)
+    {
+      options.verbose = TRUE;
+    }
+    else if (strncmp(option, "-version", option_len) == 0 ||
+            strncmp(option, "-V", option_len) == 0)
+    {
+      print_version_function();
+
+      exit(0);
+    }
     else if (strPrefix(option, "-D"))
     {
 #if 1