From 19b37d6157c61a0e56edaa56bc6bca3afb467035 Mon Sep 17 00:00:00 2001 From: David Griffith Date: Tue, 31 Jul 2018 11:50:39 -0700 Subject: [PATCH] Make regular info display for sfrotz look similar to frotz and dfrotz. --- src/sdl/sf_util.c | 11 ++++------- 1 file changed, 4 insertions(+), 7 deletions(-) diff --git a/src/sdl/sf_util.c b/src/sdl/sf_util.c index 2aacd24..1e5df1d 100644 --- a/src/sdl/sf_util.c +++ b/src/sdl/sf_util.c @@ -108,12 +108,9 @@ extern char *m_reslist_file; extern int option_scrollback_buffer; static char *info1 = - "\n" - "SDL Frotz V%s build %s - interpreter for z-code games.\n" - "Complies with Standard 1.0; supports Blorb resources and Quetzal save files.\n" - "Based on Frotz 2.40 by Stefan Jokisch and WindowsFrotz2000 by David Kinder.\n" - "\n" - "Syntax: sfrotz [options] story-file\n\n"; + "FROTZ V%s\tSDL graphics and audio interface.\n" + "An interpreter for all Infocom and other Z-Machine games.\n\n" + "Syntax: sfrotz [options] story-file\n"; static char *infos[] = { "-a watch attribute setting", @@ -150,7 +147,7 @@ static char *info2 = static void usage() { char **p = infos; int i=0,len=0; - printf(info1, GIT_TAG, build_timestamp); + printf(info1, GIT_TAG); while (*p) { if (i) -- 2.34.1