aboutsummaryrefslogtreecommitdiff
path: root/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs
diff options
context:
space:
mode:
Diffstat (limited to 'Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs')
-rw-r--r--Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs11
1 files changed, 0 insertions, 11 deletions
diff --git a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs b/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs
deleted file mode 100644
index a033356e..00000000
--- a/Ryujinx.Audio.Backends.SoundIo/Native/SoundIoException.cs
+++ /dev/null
@@ -1,11 +0,0 @@
-using System;
-using System.Runtime.InteropServices;
-using static Ryujinx.Audio.Backends.SoundIo.Native.SoundIo;
-
-namespace Ryujinx.Audio.Backends.SoundIo.Native
-{
- internal class SoundIoException : Exception
- {
- internal SoundIoException(SoundIoError error) : base(Marshal.PtrToStringAnsi(soundio_strerror(error))) { }
- }
-}