Update of /cvsroot/gcblue/gcb_wx/src/common
In directory sc8-pr-cvs1.sourceforge.net:/tmp/cvs-serv11821/src/common
Modified Files:
tcSound.cpp
Log Message:
Better sensor ageout behavior, more ai work, misc cleanup
Index: tcSound.cpp
===================================================================
RCS file: /cvsroot/gcblue/gcb_wx/src/common/tcSound.cpp,v
retrieving revision 1.25
retrieving revision 1.26
diff -C2 -d -r1.25 -r1.26
*** tcSound.cpp 2 Mar 2005 22:28:42 -0000 1.25
--- tcSound.cpp 4 Mar 2005 00:46:16 -0000 1.26
***************
*** 169,173 ****
}
! void tcSound::PlayMusic(std::string song)
{
if (!mbInitialized) return;
--- 169,173 ----
}
! void tcSound::PlayMusic(const std::string& song)
{
if (!mbInitialized) return;
***************
*** 183,187 ****
}
! void tcSound::QueueMusic(std::string song)
{
if (!mbInitialized) return;
--- 183,187 ----
}
! void tcSound::QueueMusic(const std::string& song)
{
if (!mbInitialized) return;
***************
*** 382,386 ****
! void tcSound::PlayEffect(std::string effectName)
{
if (!mbInitialized) return;
--- 382,386 ----
! void tcSound::PlayEffect(const std::string& effectName)
{
if (!mbInitialized) return;
|