From 7fd0ee83f9daafa74978288947966b2737130569 Mon Sep 17 00:00:00 2001 From: simonb Date: Sat, 16 Oct 1999 06:20:07 +0000 Subject: [PATCH] Fix alignment of the experience display when you have >1,000,000 experience. --- games/moria/patches/patch-ak | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 games/moria/patches/patch-ak diff --git a/games/moria/patches/patch-ak b/games/moria/patches/patch-ak new file mode 100644 index 000000000000..3dabb7363bb5 --- /dev/null +++ b/games/moria/patches/patch-ak @@ -0,0 +1,12 @@ +$NetBSD: patch-ak,v 1.1 1999/10/16 06:20:07 simonb Exp $ +--- source/misc3.c.orig Fri Jul 22 11:47:30 1994 ++++ source/misc3.c Sat Oct 16 15:35:05 1999 +@@ -283,7 +283,7 @@ + { + vtype out_val; + +- (void) sprintf(out_val, "%s: %6ld", header, num); ++ (void) sprintf(out_val, "%s:%7ld", header, num); + put_buffer(out_val, row, column); + } +