* adapt sdl mixer wavestream to 2008 SDL change. Patch by Yuichiro Takahashi

Mantis #25268

git-svn-id: trunk@25998 -
This commit is contained in:
marco 2013-11-09 14:31:28 +00:00
parent 5ea99c84fd
commit c84ac2214d
2 changed files with 4 additions and 3 deletions

View File

@ -252,7 +252,8 @@ type
//wavestream.h types
PWAVStream = ^TWAVStream;
TWAVStream = record
wavefp : Pointer;
rw : PSDL_RWops;
freerw : TSDL_Bool;
start : longint;
stop : longint;
cvt : TSDL_AudioCVT;

View File

@ -101,8 +101,8 @@ type
//wavestream.h types
PWAVStream = ^TWAVStream;
TWAVStream = record
wavefp : Pointer;
start : longint;
rw : PSDL_RWops;
freerw : TSDL_Bool;
stop : longint;
cvt : TSDL_AudioCVT;
end;