]> git.saurik.com Git - wxWidgets.git/commitdiff
Fix so sound looping will stop, courtesy of Ryan Norton.
authorRobin Dunn <robin@alldunn.com>
Thu, 22 Jul 2004 15:13:19 +0000 (15:13 +0000)
committerRobin Dunn <robin@alldunn.com>
Thu, 22 Jul 2004 15:13:19 +0000 (15:13 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@28396 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

src/mac/carbon/sound.cpp

index 5d8f7ddacc1d8d73908bef188982de7613cfbf0d..21ea8612ad2b6efb12cc5d07beda503a0a41ba5e 100644 (file)
@@ -234,6 +234,8 @@ bool wxSound::Create(const wxString& fileName, bool isResource)
     if(!wxInitQT())
         return false;
 
     if(!wxInitQT())
         return false;
 
+    FreeData();
+
     if (isResource)
     {
 #ifdef __WXMAC__
     if (isResource)
     {
 #ifdef __WXMAC__
@@ -260,7 +262,8 @@ bool wxSound::Create(const wxString& fileName, bool isResource)
 
 bool wxSound::DoPlay(unsigned flags) const
 {
 
 bool wxSound::DoPlay(unsigned flags) const
 {
-    wxASSERT(m_pTimer == NULL || !((wxTimer*)m_pTimer)->IsRunning() );
+//    wxASSERT(m_pTimer == NULL || !((wxTimer*)m_pTimer)->IsRunning() );
+    FreeData();
 
     Movie movie;
 
 
     Movie movie;