1
0
mirror of https://git.FreeBSD.org/ports.git synced 2024-10-31 21:57:12 +00:00
freebsd-ports/games/seabattle/files/patch-ad
Thomas Gellekum 35acff6856 Import seabattle port. This version comes with sound support.
PR:		4820
Submitted by:	Andrey Zakhvatov <andy@icc.surw.chel.su>
1998-03-27 12:08:01 +00:00

36 lines
1.3 KiB
Plaintext

*** binp.c Tue May 13 17:51:00 1997
--- /home/andy/tmp/wrk/binp.c Mon Jun 30 14:41:38 1997
***************
*** 129,143 ****
/* Incomplete as of yet */
if (which_one==1)
if (sound_device)
! if(rand()%2) system("cat hit1.au > /dev/audio ");
! else system("cat hit2.au > /dev/audio ");
else beep();
if (which_one==2)
if (sound_device)
! if(rand()%2) system("cat miss1.au > /dev/audio ");
! else system("cat miss2.au > /dev/audio ");
if (which_one==3)
! if (sound_device) system("cat sunkit.au > /dev/audio ");
else beep();
}
--- 129,143 ----
/* Incomplete as of yet */
if (which_one==1)
if (sound_device)
! if(rand()%2) system("cat " PREFIX "/share/seabattle/hit1.au > /dev/audio ");
! else system("cat " PREFIX "/share/seabattle/hit2.au > /dev/audio ");
else beep();
if (which_one==2)
if (sound_device)
! if(rand()%2) system("cat " PREFIX "/share/seabattle/miss1.au > /dev/audio ");
! else system("cat " PREFIX "/share/seabattle/miss2.au > /dev/audio ");
if (which_one==3)
! if (sound_device) system("cat " PREFIX "/share/seabattle/sunkit.au > /dev/audio ");
else beep();
}