diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs')
-rw-r--r-- | Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs b/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs index f143f6d1..0ecbab3f 100644 --- a/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs +++ b/Ryujinx.HLE/HOS/Services/Nv/NvDrvServices/NvDeviceFile.cs @@ -11,11 +11,11 @@ namespace Ryujinx.HLE.HOS.Services.Nv.NvDrvServices abstract class NvDeviceFile { public readonly ServiceCtx Context; - public readonly long Owner; + public readonly ulong Owner; public string Path; - public NvDeviceFile(ServiceCtx context, long owner) + public NvDeviceFile(ServiceCtx context, ulong owner) { Context = context; Owner = owner; |