11 lines
322 B
C#
11 lines
322 B
C#
using Ryujinx.Memory;
|
|
|
|
namespace Ryujinx.HLE.HOS.Services.Nv.NvDrvServices.NvHostDbgGpu
|
|
{
|
|
class NvHostDbgGpuDeviceFile : NvDeviceFile
|
|
{
|
|
public NvHostDbgGpuDeviceFile(ServiceCtx context, IVirtualMemoryManager memory, ulong owner) : base(context, owner) { }
|
|
|
|
public override void Close() { }
|
|
}
|
|
}
|