mirror of
https://github.com/ryujinx-mirror/ryujinx.git
synced 2024-10-02 16:50:20 -07:00
16 lines
341 B
C#
16 lines
341 B
C#
![]() |
namespace Ryujinx.Audio.Adpcm
|
||
|
{
|
||
|
public static class DspUtils
|
||
|
{
|
||
|
public static short Saturate(int Value)
|
||
|
{
|
||
|
if (Value > short.MaxValue)
|
||
|
Value = short.MaxValue;
|
||
|
|
||
|
if (Value < short.MinValue)
|
||
|
Value = short.MinValue;
|
||
|
|
||
|
return (short)Value;
|
||
|
}
|
||
|
}
|
||
|
}
|