Upgrade Audio (part 2)

This commit is contained in:
Jérôme Leclercq
2021-05-24 22:09:47 +02:00
parent ac57b3fbf4
commit 8cdd0b51cb
15 changed files with 158 additions and 104 deletions

View File

@@ -326,18 +326,18 @@ namespace Nz
{
case AL_INITIAL:
case AL_STOPPED:
return SoundStatus_Stopped;
return SoundStatus::Stopped;
case AL_PAUSED:
return SoundStatus_Paused;
return SoundStatus::Paused;
case AL_PLAYING:
return SoundStatus_Playing;
return SoundStatus::Playing;
default:
NazaraInternalError("Source state unrecognized");
}
return SoundStatus_Stopped;
return SoundStatus::Stopped;
}
}