From e41d7390d5a3438862c9527068785ed267dc64f1 Mon Sep 17 00:00:00 2001 From: nhmall Date: Thu, 5 Dec 2019 14:21:58 -0500 Subject: [PATCH] header should show 3.7 in these files that first appear there --- src/sfascii.c | 12 +++++++++--- src/sfbase.c | 2 +- src/sflendian.c | 2 +- 3 files changed, 11 insertions(+), 5 deletions(-) diff --git a/src/sfascii.c b/src/sfascii.c index 0a85ed209..673d47342 100644 --- a/src/sfascii.c +++ b/src/sfascii.c @@ -1,7 +1,13 @@ -/* NetHack 3.6 sfascii.c $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ +/* NetHack 3.7 sfascii.c $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ /* Copyright (c) Michael Allison, 2019. */ /* NetHack may be freely redistributed. See license for details. */ +/* + * this is a proof-of-concept alternative output format. It doesn't + * offer value over the sflendian approach and is mostly used to test + * and confirm that alternative saveformat operates correctly. + */ + #include "hack.h" #include "integer.h" #include "sfprocs.h" @@ -17,7 +23,7 @@ void FDECL(report_problem_ascii, (NHFILE *, const char *, const char *, const ch #endif struct sf_procs ascii_sfo_procs = { - ".ascii", + ".tx", { ascii_sfo_aligntyp, ascii_sfo_any, @@ -44,7 +50,7 @@ struct sf_procs ascii_sfo_procs = { struct sf_procs ascii_sfi_procs = { - ".ascii", + ".tx", { ascii_sfi_aligntyp, ascii_sfi_any, diff --git a/src/sfbase.c b/src/sfbase.c index 8f81817b3..396bdd03c 100644 --- a/src/sfbase.c +++ b/src/sfbase.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 sf_base.c $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ +/* NetHack 3.7 sf_base.c $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ /* Copyright (c) Michael Allison, 2019. */ /* NetHack may be freely redistributed. See license for details. */ diff --git a/src/sflendian.c b/src/sflendian.c index e4dc92fb4..3953a371e 100644 --- a/src/sflendian.c +++ b/src/sflendian.c @@ -1,4 +1,4 @@ -/* NetHack 3.6 sflendian.c $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ +/* NetHack 3.7 sflendian.c $NHDT-Date$ $NHDT-Branch$:$NHDT-Revision$ */ /* Copyright (c) M. Allison, 2019. */ /* NetHack may be freely redistributed. See license for details. */