Removed sdl_sound patch as it has been applied upstream

This commit is contained in:
Scott McCreary
2009-10-03 17:16:31 +00:00
parent d3471e9841
commit 3dd4613bed

View File

@@ -1,13 +0,0 @@
--- SDL_sound.c 2008-08-30 21:13:28.000000000 -0700
+++ SDL_sound-haiku.c 2008-08-30 22:41:20.000000000 -0700
@@ -928,8 +928,9 @@
Sint32 Sound_GetDuration(Sound_Sample *sample)
{
+ Sound_SampleInternal *internal;
BAIL_IF_MACRO(!initialized, ERR_NOT_INITIALIZED, -1);
- Sound_SampleInternal *internal = (Sound_SampleInternal *) sample->opaque;
+ internal = (Sound_SampleInternal *) sample->opaque;
return(internal->total_time);
} /* Sound_GetDuration */