mirror of
https://github.com/Ryujinx/Ryujinx.git
synced 2024-11-07 20:18:31 +00:00
7b66cb0d90
* 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;
|
|
}
|
|
}
|