diff options
Diffstat (limited to 'games/krogue/files/patch-ad')
-rw-r--r-- | games/krogue/files/patch-ad | 33 |
1 files changed, 0 insertions, 33 deletions
diff --git a/games/krogue/files/patch-ad b/games/krogue/files/patch-ad deleted file mode 100644 index 42e5828..0000000 --- a/games/krogue/files/patch-ad +++ /dev/null @@ -1,33 +0,0 @@ ---- krogue/rogue/move.c.orig Fri May 12 03:08:32 2000 -+++ krogue/rogue/move.c Fri Feb 2 03:12:36 2001 -@@ -15,7 +15,7 @@ - - short m_moves = 0; - boolean jump = 1; --char *you_can_move_again = _T("you can move again"); -+char *you_can_move_again = msgQuote("you can move again"); - - extern short cur_room, halluc, blind, levitate; - extern short cur_level, max_level; -@@ -325,18 +325,18 @@ - boolean fainted = 0; - - if (rogue.moves_left == HUNGRY) { -- (void) strcpy(hunger_str, _T("hungry")); -+ (void) strcpy(hunger_str, msgQuote("hungry")); - message(transl(hunger_str), 1); - print_stats(STAT_HUNGER); - } - if (rogue.moves_left == WEAK) { -- (void) strcpy(hunger_str, _T("weak")); -+ (void) strcpy(hunger_str, msgQuote("weak")); - message(transl(hunger_str), 1); - print_stats(STAT_HUNGER); - } - if (rogue.moves_left <= FAINT) { - if (rogue.moves_left == FAINT) { -- (void) strcpy(hunger_str, _T("faint")); -+ (void) strcpy(hunger_str, msgQuote("faint")); - message(transl(hunger_str), 1); - print_stats(STAT_HUNGER); - } |