// wxSoundStreamG72X
// --------------------------------------------------------------------------
-// This fixes a bug in Mingw95
-typedef struct g72x_state g7s;
-
wxSoundStreamG72X::wxSoundStreamG72X(wxSoundStream& sndio)
: wxSoundStreamCodec(sndio)
{
// PCM converter
m_router = new wxSoundRouterStream(sndio);
- m_state = new g7s;
+ m_state = new g72state;
g72x_init_state(m_state);
}