mirror of https://github.com/AxioDL/boo.git
Windows compile fix
This commit is contained in:
parent
c47780527d
commit
7b329963d1
|
@ -113,7 +113,7 @@ struct WAVOutVoiceEngine : boo::BaseAudioVoiceEngine
|
||||||
#if _WIN32
|
#if _WIN32
|
||||||
WAVOutVoiceEngine(const wchar_t* path, double sampleRate)
|
WAVOutVoiceEngine(const wchar_t* path, double sampleRate)
|
||||||
{
|
{
|
||||||
m_fp = _wfopen(path, "wb");
|
m_fp = _wfopen(path, L"wb");
|
||||||
if (!m_fp)
|
if (!m_fp)
|
||||||
return;
|
return;
|
||||||
prepareWAV(sampleRate);
|
prepareWAV(sampleRate);
|
||||||
|
|
Loading…
Reference in New Issue