diff options
author | Satoshi Taoka <taoka@FreeBSD.org> | 1999-03-30 16:32:35 +0000 |
---|---|---|
committer | Satoshi Taoka <taoka@FreeBSD.org> | 1999-03-30 16:32:35 +0000 |
commit | 6f79c9c567ba33f6a18d2d11c44a8f20c67a4325 (patch) | |
tree | 5b7098a000f6cb1a708b024c84b1f43302bce6a0 /emulators/atari800/files/patch-ab | |
parent | added CaribbeanStud (diff) |
Updated to version 0.8.6 after I modified several problems
PR: ports/7734
Submitted by: Joel Sutton (maintainer)
Notes
Notes:
svn path=/head/; revision=17454
Diffstat (limited to 'emulators/atari800/files/patch-ab')
-rw-r--r-- | emulators/atari800/files/patch-ab | 48 |
1 files changed, 29 insertions, 19 deletions
diff --git a/emulators/atari800/files/patch-ab b/emulators/atari800/files/patch-ab index 15c13272debe..12b39bf31bdf 100644 --- a/emulators/atari800/files/patch-ab +++ b/emulators/atari800/files/patch-ab @@ -1,19 +1,29 @@ -*** sound.c.orig Sun Apr 20 23:19:13 1997 ---- sound.c Sun Apr 20 23:19:28 1997 -*************** -*** 3,9 **** - #ifdef VOXWARE - #include <fcntl.h> - #include <sys/ioctl.h> -! #include <sys/soundcard.h> - - #include "pokey11.h" - ---- 3,9 ---- - #ifdef VOXWARE - #include <fcntl.h> - #include <sys/ioctl.h> -! #include <machine/soundcard.h> - - #include "pokey11.h" - +--- prompts.c.orig Thu Jun 18 20:20:15 1998 ++++ prompts.c Thu Jun 18 20:22:22 1998 +@@ -10,7 +10,7 @@ + char gash[128]; + + printf(message, string); +- gets(gash); ++ fgets(gash,128,stdin); + if (strlen(gash) > 0) + strcpy(string, gash); + } +@@ -20,7 +20,7 @@ + char gash[128]; + + printf(message, *num); +- gets(gash); ++ fgets(gash,128,stdin); + if (strlen(gash) > 0) + sscanf(gash, "\n%d", num); + } +@@ -32,7 +32,7 @@ + + do { + printf(message, *yn); +- gets(gash); ++ fgets(gash,128,stdin); + + if (strlen(gash) > 0) + t_yn = gash[0]; |