mirror of
https://git.ryujinx.app/projects/Kenji-NX.git
synced 2026-09-22 02:31:12 +02:00
19 lines
366 B
C#
19 lines
366 B
C#
namespace Ryujinx.HLE.OsHle.Kernel
|
|
{
|
|
static class NsTimeConverter
|
|
{
|
|
public static int GetTimeMs(ulong Ns)
|
|
{
|
|
ulong Ms = Ns / 1_000_000;
|
|
|
|
if (Ms < int.MaxValue)
|
|
{
|
|
return (int)Ms;
|
|
}
|
|
else
|
|
{
|
|
return int.MaxValue;
|
|
}
|
|
}
|
|
}
|
|
} |