after a few minutes of play it becomes very unlikely that you can save the game. freopen fails. this problem is discussed at http://pub78.ezboard.com/fnethackfalconseyefrm2.showMessage?topicID=44.topic PR: ports/48130 Submitted by: tom <tom@uffner.com> Approved by: maintainer timeout (and that of me complained about it :-)
15 lines
393 B
C
15 lines
393 B
C
*** win/jtp/jtp_sdl.c.orig Sat Feb 8 17:23:47 2003
|
|
--- win/jtp/jtp_sdl.c Sat Feb 8 17:32:00 2003
|
|
***************
|
|
*** 130,136 ****
|
|
--- 130,139 ----
|
|
if (sig_id == SIGCHLD)
|
|
{
|
|
if (jtp_sdl_music_player_pid > 0)
|
|
+ {
|
|
kill(jtp_sdl_music_player_pid, SIGKILL);
|
|
+ waitpid(jtp_sdl_music_player_pid, NULL, 0);
|
|
+ }
|
|
jtp_sdl_music_player_pid = -1;
|
|
}
|
|
}
|