From dea0df614933f44e2905d9f5f6a4463733033e68 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Wed, 19 Jun 2013 12:06:41 -0700 Subject: [PATCH] Make DOS Frotz less chatty on startup. --- src/dos/bcinit.c | 7 +++---- 1 file changed, 3 insertions(+), 4 deletions(-) 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) -- 2.34.1