Fix strict prototypes in Audio

This commit is contained in:
Sergey Sharybin 2023-04-18 11:24:44 +02:00 committed by Sergey Sharybin
parent a20f45bab9
commit 9e63c3cee8
1 changed files with 2 additions and 2 deletions

View File

@ -649,12 +649,12 @@ void BKE_sound_destroy_scene(Scene *scene)
}
}
void BKE_sound_lock()
void BKE_sound_lock(void)
{
AUD_Device_lock(sound_device);
}
void BKE_sound_unlock()
void BKE_sound_unlock(void)
{
AUD_Device_unlock(sound_device);
}