openal: ptr != 0 -> ptr != NULL

This commit is contained in:
Sam Edwards 2018-03-06 19:01:34 -07:00
parent 99dc462174
commit d8b48a3837

View File

@ -98,5 +98,5 @@ is_playing() const {
*/
INLINE bool OpenALAudioSound::
has_sound_data() const {
return _sd != 0;
return _sd != NULL;
}