From: David Griffith Date: Tue, 31 Jul 2018 18:50:39 +0000 (-0700) Subject: Make regular info display for sfrotz look similar to frotz and dfrotz. X-Git-Url: https://scope-eye.net/git/?a=commitdiff_plain;h=19b37d6157c61a0e56edaa56bc6bca3afb467035;p=liskon_frotz.git Make regular info display for sfrotz look similar to frotz and dfrotz. --- 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)