]> git.saurik.com Git - wxWidgets.git/commitdiff
Added file and fixed compilo
authorJulian Smart <julian@anthemion.co.uk>
Fri, 23 Nov 2001 12:42:42 +0000 (12:42 +0000)
committerJulian Smart <julian@anthemion.co.uk>
Fri, 23 Nov 2001 12:42:42 +0000 (12:42 +0000)
git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@12617 c3d73ce0-8a6f-49c7-b76d-6d57e0e08775

contrib/src/mmedia/MmediaVC.dsp
contrib/src/mmedia/sndmsad.cpp

index ed6566eb67a2a9ec0b3400a995d257cf836a8e29..a37371691e06b1f3149a2524cdeacc30ab10e2d6 100644 (file)
@@ -134,6 +134,10 @@ SOURCE=.\sndg72x.cpp
 # End Source File
 # Begin Source File
 
+SOURCE=.\sndmsad.cpp
+# End Source File
+# Begin Source File
+
 SOURCE=.\sndpcm.cpp
 # End Source File
 # Begin Source File
index 6024e8e4c173b429d38738e3c86ac20f5a76d5ab..dbc6505d5bf409262a2b6dd247b91468bba73d2c 100644 (file)
@@ -77,7 +77,7 @@ void wxSoundFormatMSAdpcm::SetCoefs(wxInt16 **coefs, wxUint16 ncoefs,
         delete[] m_coefs;
     }
     // TODO: Add some memory checking here
-    m_coefs = new (wxInt16 *)[ncoefs];
+    m_coefs = new wxInt16 *[ncoefs];
 
     for (i=0;i<ncoefs;i++)
        m_coefs[i] = new wxInt16[coefs_len];