* 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 //wavestream.h types
PWAVStream = ^TWAVStream; PWAVStream = ^TWAVStream;
TWAVStream = record TWAVStream = record
wavefp : Pointer; rw : PSDL_RWops;
freerw : TSDL_Bool;
start : longint; start : longint;
stop : longint; stop : longint;
cvt : TSDL_AudioCVT; cvt : TSDL_AudioCVT;

View File

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