Compilation fix for ao audio backend

This commit is contained in:
scribam 2020-03-16 18:03:43 +01:00
parent 1abfdaf64e
commit 1afc102910
1 changed files with 1 additions and 1 deletions

View File

@ -24,7 +24,7 @@ static void libao_init()
static u32 libao_push(const void* frame, u32 samples, bool wait)
{
if (aodevice)
ao_play(aodevice, (const char*)frame, samples * 4);
ao_play(aodevice, (char*)frame, samples * 4);
return 1;
}