From: David Griffith Date: Wed, 19 Jun 2013 19:06:41 +0000 (-0700) Subject: Make DOS Frotz less chatty on startup. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=dea0df614933f44e2905d9f5f6a4463733033e68;p=liskon_frotz.git Make DOS Frotz less chatty on startup. --- diff --git a/src/dos/bcinit.c b/src/dos/bcinit.c index e70355a..4671e85 100644 --- a/src/dos/bcinit.c +++ b/src/dos/bcinit.c @@ -414,7 +414,9 @@ void os_process_arguments (int argc, char *argv[]) printf("Blorb file loaded, but unable to build map.\n\n"); break; default: - printf("Blorb error code %i\n\n"); + break; +/* No problem. Don't say anything. */ +/* printf("Blorb error code %i\n\n"); */ } }/* os_process_arguments */ @@ -921,9 +923,6 @@ int dos_init_blorb(void) * is contained in the blorb file. */ - printf("blorb_file %s\n", blorb_file); - printf("story_file %s\n", f_setup.story_file); - if (strncmp((char *)basename(f_setup.story_file), (char *)basename(blorb_file), 55) == 0) { if ((blorbfile = fopen(blorb_file, "rb")) == NULL)