mirror of the now-defunct rocklinux.org
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 
 

45 lines
1.4 KiB

diff -ruN bsd-games-2.16/hack/extern.h bsd-games-2.16-new/hack/extern.h
--- bsd-games-2.16/hack/extern.h 2004-01-27 21:51:11.000000000 +0100
+++ bsd-games-2.16-new/hack/extern.h 2005-05-17 23:16:15.000000000 +0200
@@ -511,7 +511,7 @@
void standoutend(void);
void backsp(void);
void bell(void);
-void delay_output(void);
+void delay_output_my(void);
void cl_eos(void);
/* hack.timeout.c */
diff -ruN bsd-games-2.16/hack/hack.pri.c bsd-games-2.16-new/hack/hack.pri.c
--- bsd-games-2.16/hack/hack.pri.c 2004-01-26 03:08:30.000000000 +0100
+++ bsd-games-2.16-new/hack/hack.pri.c 2005-05-17 23:16:15.000000000 +0200
@@ -171,7 +171,7 @@
return;
}
if (prevx >= 0 && cansee(prevx, prevy)) {
- delay_output();
+ delay_output_my();
prl(prevx, prevy); /* in case there was a monster */
at(prevx, prevy, levl[prevx][prevy].scrsym);
}
@@ -218,7 +218,7 @@
/* normal call */
if (cansee(x, y)) {
if (cnt)
- delay_output();
+ delay_output_my();
at(x, y, let);
tc[cnt].x = x;
tc[cnt].y = y;
diff -ruN bsd-games-2.16/hack/hack.termcap.c bsd-games-2.16-new/hack/hack.termcap.c
--- bsd-games-2.16/hack/hack.termcap.c 2003-12-17 03:46:37.000000000 +0100
+++ bsd-games-2.16-new/hack/hack.termcap.c 2005-05-17 23:16:15.000000000 +0200
@@ -326,7 +326,7 @@
}
void
-delay_output()
+delay_output_my()
{
/* delay 50 ms - could also use a 'nap'-system call */