Change nullptr to NULL to avoid possible issues with platforms that don't support C++11.

This commit is contained in:
The Dax 2013-07-27 02:16:06 -04:00
parent 349d4eba2b
commit 489748ffc0

View File

@ -590,7 +590,7 @@ int MediaEngine::getAudioSamples(u8* buffer) {
}
int outbytes = 0;
if(m_audioContext != nullptr)
if(m_audioContext != NULL)
Atrac3plus_Decoder::Decode(m_audioContext, audioFrame, frameSize, &outbytes, buffer);
if (headerCode1 == 0x24) {