diff options
Diffstat (limited to 'Ryujinx.HLE/HOS/Services/Nv/NvFd.cs')
| -rw-r--r-- | Ryujinx.HLE/HOS/Services/Nv/NvFd.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs b/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs index 96f97f41..b6c654e4 100644 --- a/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs +++ b/Ryujinx.HLE/HOS/Services/Nv/NvFd.cs @@ -4,9 +4,9 @@ namespace Ryujinx.HLE.HOS.Services.Nv { public string Name { get; private set; } - public NvFd(string Name) + public NvFd(string name) { - this.Name = Name; + Name = name; } } }
\ No newline at end of file |
