mirror of
https://git.ryujinx.app/ryubing/ryujinx.git
synced 2025-04-21 18:13:14 +02:00

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.
14 lines
290 B
C#
14 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,
|
|
}
|
|
}
|