diff options
author | simonb <simonb@pkgsrc.org> | 1999-10-16 06:20:07 +0000 |
---|---|---|
committer | simonb <simonb@pkgsrc.org> | 1999-10-16 06:20:07 +0000 |
commit | 7fd0ee83f9daafa74978288947966b2737130569 (patch) | |
tree | 7256fb43f5f394c979c52463e8499cfcf3024780 /games | |
parent | 228af5db4ca1e841f87a4376f94d984515ab3c77 (diff) | |
download | pkgsrc-7fd0ee83f9daafa74978288947966b2737130569.tar.gz |
Fix alignment of the experience display when you have >1,000,000
experience.
Diffstat (limited to 'games')
-rw-r--r-- | games/moria/patches/patch-ak | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/games/moria/patches/patch-ak b/games/moria/patches/patch-ak new file mode 100644 index 00000000000..3dabb7363bb --- /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); + } + |