aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs
diff options
context:
space:
mode:
authorTSR Berry <20988865+TSRBerry@users.noreply.github.com>2023-04-08 01:22:00 +0200
committerMary <thog@protonmail.com>2023-04-27 23:51:14 +0200
commitcee712105850ac3385cd0091a923438167433f9f (patch)
tree4a5274b21d8b7f938c0d0ce18736d3f2993b11b1 /Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs
parentcd124bda587ef09668a971fa1cac1c3f0cfc9f21 (diff)
Move solution and projects to src
Diffstat (limited to 'Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs')
-rw-r--r--Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs25
1 files changed, 0 insertions, 25 deletions
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs b/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs
deleted file mode 100644
index 0eee9780..00000000
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoFormat.cs
+++ /dev/null
@@ -1,25 +0,0 @@
-namespace Ryujinx.Audio.Backends.SoundIo.Native
-{
- public enum SoundIoFormat
- {
- Invalid = 0,
- S8 = 1,
- U8 = 2,
- S16LE = 3,
- S16BE = 4,
- U16LE = 5,
- U16BE = 6,
- S24LE = 7,
- S24BE = 8,
- U24LE = 9,
- U24BE = 10,
- S32LE = 11,
- S32BE = 12,
- U32LE = 13,
- U32BE = 14,
- Float32LE = 15,
- Float32BE = 16,
- Float64LE = 17,
- Float64BE = 18,
- }
-}