Moved AppLibrary, Configuration, and PlayReport namespaces to Ryujinx.Systems, add the compat list stuff in the base Ryujinx.Systems namespace. Moved the compatibility UI stuff to the proper UI view/viewmodel folders.
15 lines
290 B
C#
15 lines
290 B
C#
using Ryujinx.Common.Utilities;
|
|
using System.Text.Json.Serialization;
|
|
|
|
namespace Ryujinx.Ava.Systems.Configuration
|
|
{
|
|
[JsonConverter(typeof(TypedStringEnumConverter<AudioBackend>))]
|
|
public enum AudioBackend
|
|
{
|
|
Dummy,
|
|
OpenAl,
|
|
SoundIo,
|
|
SDL2,
|
|
}
|
|
}
|