summaryrefslogtreecommitdiff
path: root/games/anagramarama/files/patch-src-ag.c
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2011-08-01 05:01:13 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2011-08-01 05:01:13 +0000
commit89d232bfadd4741ecb124fca90aa115bb59d541c (patch)
tree10c6f3f67937d9770900aedd45d720e53ada65cb /games/anagramarama/files/patch-src-ag.c
parent- Remove unnecessary DISTNAME declaration (diff)
Bye bye abandonwares (part 3)
2011-08-01 deskutils/gkrellm-timers: No more public distfile 2011-08-01 deskutils/multi-backgrounds-daemon: Looks like an abandonware, no more public distfile 2011-08-01 deskutils/py-tagfu: Looks like an abandonware, no more public distfile 2011-08-01 deskutils/taskstep: Looks like an abandonware, no more public distfile 2011-08-01 devel/c_c++_reference: No more public distfiles 2011-08-01 devel/libcoyotl: Looks like an abandonware, no more public distfile 2011-08-01 devel/libfs++: Looks like an abandonware, no more public distfile 2011-08-01 devel/mkmf: Looks like an abandonware, no more public distfile 2011-08-01 devel/p5-Include: No more public distfiles 2011-08-01 devel/rubygem-newgem: broken since 2010/09/22 2011-08-01 devel/tpg: Looks like an abandonware, no more public distfile 2011-08-01 games/amphetamine: Looks like an abandonware, no more public distfile 2011-08-01 games/anagramarama: Looks like an abandonware, no more public distfile 2011-08-01 games/connect4 2011-08-01 games/wrogue: No more public distfiles, looks like an abandonware 2011-08-01 graphics/xmms-msa: Looks like an abandonware, no more public distfile 2011-08-01 japanese/chimera: Look like an abandonware, no more public distifles 2011-08-01 japanese/drpl: Look like an abandonware, no more public distifles 2011-08-01 japanese/dvi2tty: Look like an abandonware, no more public distifles 2011-08-01 japanese/easypr: Look like an abandonware, no more public distifles 2011-08-01 japanese/elisp-manual: Look like an abandonware, no more public distifles 2011-08-01 japanese/emacs-manual: Look like an abandonware, no more public distifles 2011-08-01 japanese/ewipe: Look like an abandonware, no more public distifles 2011-08-01 japanese/ircII: Look like an abandonware, no more public distifles 2011-08-01 japanese/jhd: Look like an abandonware, no more public distifles 2011-08-01 japanese/libjconv: Look like an abandonware, no more public distifles 2011-08-01 japanese/mimekit: Look like an abandonware, no more public distifles 2011-08-01 japanese/nethack32: Look like an abandonware, no more public distifles 2011-08-01 japanese/paledit: Look like an abandonware, no more public distifles 2011-08-01 japanese/plain2: Look like an abandonware, no more public distifles 2011-08-01 japanese/recjis: Look like an abandonware, no more public distifles 2011-08-01 japanese/typist: Look like an abandonware, no more public distifles 2011-08-01 japanese/weblint97: Look like an abandonware, no more public distifles 2011-08-01 japanese/xmsgsaver: Look like an abandonware, no more public distifles 2011-08-01 japanese/xshodo: Look like an abandonware, no more public distifles 2011-08-01 japanese/xvi-euc: No more public distfiles 2011-08-01 japanese/xvi-sjis: No more public distfiles 2011-08-01 japanese/xyagamo: Look like an abandonware, no more public distifles
Diffstat (limited to 'games/anagramarama/files/patch-src-ag.c')
-rw-r--r--games/anagramarama/files/patch-src-ag.c28
1 files changed, 0 insertions, 28 deletions
diff --git a/games/anagramarama/files/patch-src-ag.c b/games/anagramarama/files/patch-src-ag.c
deleted file mode 100644
index 842f724c6274..000000000000
--- a/games/anagramarama/files/patch-src-ag.c
+++ /dev/null
@@ -1,28 +0,0 @@
---- src/ag.c.orig Wed Jul 13 15:52:56 2005
-+++ src/ag.c Wed Jul 13 15:54:22 2005
-@@ -1723,6 +1723,12 @@
- SDL_Surface *screen;
- struct sprite* letters = NULL;
- //pthread_t audio;
-+ // buffer sounds
-+ int audio_rate = MIX_DEFAULT_FREQUENCY;
-+ Uint16 audio_format = AUDIO_S16;
-+ int audio_channels = 1;
-+ int audio_buffers = 256;
-+
-
- // seed the random generator
- srand(time(NULL));
-@@ -1742,12 +1748,6 @@
- }
-
- SDL_WM_SetCaption("Anagramarama", "ANAGRAMARAMA");
--
-- // buffer sounds
-- int audio_rate = MIX_DEFAULT_FREQUENCY;
-- Uint16 audio_format = AUDIO_S16;
-- int audio_channels = 1;
-- int audio_buffers = 256;
-
- if(Mix_OpenAudio(audio_rate, audio_format, audio_channels, audio_buffers)){
- printf("unable to open audio!\n");