t"Real" plugin support via. gmodule (still very very experimental). - vaccinewars - be a doctor and try to vaccinate the world | |
git clone git://src.adamsgaard.dk/vaccinewars | |
Log | |
Files | |
Refs | |
README | |
LICENSE | |
--- | |
commit 217c1fe260a46fda3f4ed57b8402bcc753aa9c24 | |
parent 29c94997a64972bd1a29ace4a97b3eb1da48f72b | |
Author: Ben Webb | |
Date: Mon, 13 May 2002 15:46:37 +0000 "Real" plugin support via. gmodule (still very very experimental). Diffstat: M src/sound_esd.c | 2 +- M src/sound_sdl.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) --- | |
diff --git a/src/sound_esd.c b/src/sound_esd.c | |
t@@ -88,7 +88,7 @@ static void SoundPlay_ESD(const gchar *snd) nextcache = (nextcache + 1) % MAXCACHE; } -SoundDriver *SoundInit_ESD(void) +SoundDriver *init(void) { static SoundDriver driver; | |
diff --git a/src/sound_sdl.c b/src/sound_sdl.c | |
t@@ -107,7 +107,7 @@ static void SoundPlay_SDL(const gchar *snd) channel[chan_num].name = g_strdup(snd); } -SoundDriver *SoundInit_SDL(void) +SoundDriver *init(void) { static SoundDriver driver; |