diff options
author | simonb <simonb> | 1999-10-16 06:20:07 +0000 |
---|---|---|
committer | simonb <simonb> | 1999-10-16 06:20:07 +0000 |
commit | a0dd950edb5e4cd75974227274137c4075ad0d71 (patch) | |
tree | 7256fb43f5f394c979c52463e8499cfcf3024780 | |
parent | ade549f558c60ff4659fc2e170915c117f241a97 (diff) | |
download | pkgsrc-a0dd950edb5e4cd75974227274137c4075ad0d71.tar.gz |
Fix alignment of the experience display when you have >1,000,000
experience.
-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); + } + |