From 6f79c9c567ba33f6a18d2d11c44a8f20c67a4325 Mon Sep 17 00:00:00 2001 From: Satoshi Taoka Date: Tue, 30 Mar 1999 16:32:35 +0000 Subject: Updated to version 0.8.6 after I modified several problems PR: ports/7734 Submitted by: Joel Sutton (maintainer) --- emulators/atari800/files/patch-ab | 48 +++++++++++++++++++++++---------------- 1 file changed, 29 insertions(+), 19 deletions(-) (limited to 'emulators/atari800/files/patch-ab') 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 - #include -! #include - - #include "pokey11.h" - ---- 3,9 ---- - #ifdef VOXWARE - #include - #include -! #include - - #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]; -- cgit v1.2.3