Commit 5927dc70 authored by Ryan C. Gordon's avatar Ryan C. Gordon

Patched to compile.

--HG--
extra : convert_revision : svn%3Ac70aab31-4412-0410-b14c-859654838e24/trunk%402202
parent 3c592629
......@@ -158,6 +158,26 @@ callBackProc(SndChannel * chan, SndCommand * cmd_passed)
}
}
static void
SNDMGR_CloseDevice(_THIS)
{
running = 0;
if (this->hidden != NULL) {
if (this->hidden->channel) {
SndDisposeChannel(this->hidden->channel, true);
this->hidden->channel = NULL;
}
SDL_free(buffer[0]);
SDL_free(buffer[1]);
buffer[0] = buffer[1] = NULL;
SDL_free(this->hidden);
this->hidden = NULL;
}
}
static int
SNDMGR_OpenDevice(_THIS, const char *devname, int iscapture)
{
......@@ -271,28 +291,6 @@ SNDMGR_OpenDevice(_THIS, const char *devname, int iscapture)
return 1;
}
static void
SNDMGR_CloseDevice(_THIS)
{
int i;
running = 0;
if (this->hidden->channel) {
SndDisposeChannel(this->hidden->channel, true);
this->hidden->channel = NULL;
}
for (i = 0; i < 2; ++i) {
if (buffer[i]) {
SDL_free(buffer[i]);
buffer[i] = NULL;
}
}
SDL_free(this->hidden);
this->hidden = NULL;
}
static int
SNDMGR_Init(SDL_AudioDriverImpl *impl)
{
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment