diff options
author | simonb <simonb> | 1999-10-16 07:10:32 +0000 |
---|---|---|
committer | simonb <simonb> | 1999-10-16 07:10:32 +0000 |
commit | 126c6b476c2433824653b39a62b5f7356d2cb73f (patch) | |
tree | 410416967f9d6191615822bd45b21939ec4a0de6 /games/moria | |
parent | 1dc955c4f853ae3df61a5477628ee066839b3d7a (diff) | |
download | pkgsrc-126c6b476c2433824653b39a62b5f7356d2cb73f.tar.gz |
Previous wasn't enough - experience is updated in another place.
Diffstat (limited to 'games/moria')
-rw-r--r-- | games/moria/patches/patch-ak | 31 |
1 files changed, 29 insertions, 2 deletions
diff --git a/games/moria/patches/patch-ak b/games/moria/patches/patch-ak index 3dabb7363bb..ef3d13da910 100644 --- a/games/moria/patches/patch-ak +++ b/games/moria/patches/patch-ak @@ -1,6 +1,6 @@ -$NetBSD: patch-ak,v 1.1 1999/10/16 06:20:07 simonb Exp $ +$NetBSD: patch-ak,v 1.2 1999/10/16 07:10:32 simonb Exp $ --- source/misc3.c.orig Fri Jul 22 11:47:30 1994 -+++ source/misc3.c Sat Oct 16 15:35:05 1999 ++++ source/misc3.c Sat Oct 16 16:59:14 1999 @@ -283,7 +283,7 @@ { vtype out_val; @@ -10,3 +10,30 @@ $NetBSD: patch-ak,v 1.1 1999/10/16 06:20:07 simonb Exp $ put_buffer(out_val, row, column); } +@@ -317,7 +317,7 @@ + { + vtype out_val; + +- (void) sprintf(out_val, "%6ld", num); ++ (void) sprintf(out_val, "%7ld", num); + put_buffer(out_val, row, column); + } + +@@ -481,7 +481,7 @@ + /* Prints current gold -RAK- */ + void prt_gold() + { +- prt_long(py.misc.au, 20, STAT_COLUMN+6); ++ prt_long(py.misc.au, 20, STAT_COLUMN+5); + } + + +@@ -2070,7 +2070,7 @@ + if (p_ptr->exp > p_ptr->max_exp) + p_ptr->max_exp = p_ptr->exp; + +- prt_long(p_ptr->exp, 14, STAT_COLUMN+6); ++ prt_long(p_ptr->exp, 14, STAT_COLUMN+5); + } + + |