From: Anders B. <vr-...@us...> - 2004-09-23 06:36:32
|
Update of /cvsroot/alpp/openalpp/src In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv12448 Modified Files: sourcebase.cpp Log Message: Fixed a bug when playing ogg streamed files through the filestream class. Removing the alPlaySourcev to alPlaySource fixes the problem. Index: sourcebase.cpp =================================================================== RCS file: /cvsroot/alpp/openalpp/src/sourcebase.cpp,v retrieving revision 1.8 retrieving revision 1.9 diff -C2 -d -r1.8 -r1.9 *** sourcebase.cpp 2 Mar 2004 07:50:27 -0000 1.8 --- sourcebase.cpp 23 Sep 2004 06:36:22 -0000 1.9 *************** *** 121,125 **** void SourceBase::play() { ! alSourcePlayv(nlinkedsources_,linkedsources_); } --- 121,126 ---- void SourceBase::play() { ! //alSourcePlayv(nlinkedsources_,linkedsources_); ! alSourcePlay(nlinkedsources_); } |