Make DOS Frotz less chatty on startup.
authorDavid Griffith <dave@661.org>
Wed, 19 Jun 2013 19:06:41 +0000 (12:06 -0700)
committerDavid Griffith <dave@661.org>
Wed, 19 Jun 2013 19:06:41 +0000 (12:06 -0700)
src/dos/bcinit.c

index e70355ad5951c3f53487c692adbb01783bd01cd2..4671e855d3becb5693fc562c2c2ded2d48a51ebd 100644 (file)
@@ -414,7 +414,9 @@ void os_process_arguments (int argc, char *argv[])
            printf("Blorb file loaded, but unable to build map.\n\n");\r
            break;\r
        default:\r
-           printf("Blorb error code %i\n\n");\r
+           break;\r
+/* No problem.  Don't say anything. */\r
+/*         printf("Blorb error code %i\n\n"); */\r
     }\r
 }/* os_process_arguments */\r
 \r
@@ -921,9 +923,6 @@ int dos_init_blorb(void)
      * is contained in the blorb file.\r
      */\r
 \r
-    printf("blorb_file %s\n", blorb_file);\r
-    printf("story_file %s\n", f_setup.story_file);\r
-\r
     if (strncmp((char *)basename(f_setup.story_file),\r
      (char *)basename(blorb_file), 55) == 0) {\r
        if ((blorbfile = fopen(blorb_file, "rb")) == NULL)\r