Aways write voice state as finished playing while proper audren support is not in place

This commit is contained in:
gdkchan 2018-06-25 02:04:19 -03:00
parent e7559f128f
commit 7c7ee8f8ca
2 changed files with 28 additions and 8 deletions

View file

@ -0,0 +1,9 @@
namespace Ryujinx.HLE.OsHle.Services.Aud
{
enum VoicePlaybackState : int
{
Playing = 0,
Finished = 1,
Paused = 2
}
}