mirror of
https://github.com/Ryubing/Ryujinx.git
synced 2025-03-10 09:04:23 +00:00

* audio: Cleanup SoundIO and fix OpenAL issue * fix tabs by spaces * Fix extra spaces * Fix SoundIO.cs * Fix ContainsAudioOutBuffer
16 lines
288 B
C#
16 lines
288 B
C#
using System;
|
|
namespace SoundIOSharp
|
|
{
|
|
public struct SoundIOSampleRateRange
|
|
{
|
|
internal SoundIOSampleRateRange(int min, int max)
|
|
{
|
|
Min = min;
|
|
Max = max;
|
|
}
|
|
|
|
public readonly int Min;
|
|
public readonly int Max;
|
|
}
|
|
}
|