git-svn-id: https://svn.wxwidgets.org/svn/wx/wxWidgets/trunk@25465
c3d73ce0-8a6f-49c7-b76d-
6d57e0e08775
{
wxSOUND_SYNC = 0,
wxSOUND_ASYNC = 1,
{
wxSOUND_SYNC = 0,
wxSOUND_ASYNC = 1,
- wxSOUND_LOOP = 2 | wxSOUND_ASYNC
};
class wxSoundBase : public wxObject
};
class wxSoundBase : public wxObject
{
unsigned flags = 0;
if (async) flags |= wxSOUND_ASYNC;
{
unsigned flags = 0;
if (async) flags |= wxSOUND_ASYNC;
- if (looped) flags |= wxSOUND_LOOP;
+ if (looped) flags |= wxSOUND_LOOP | wxSOUND_ASYNC;
return DoPlay(flags);
}
#endif
return DoPlay(flags);
}
#endif