-
-
Notifications
You must be signed in to change notification settings - Fork 166
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Adding nvngx regkey
- Loading branch information
Showing
2 changed files
with
60 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -635,3 +635,62 @@ index a2b45b3c28f..851a31b7d05 100644 | |
|
||
HKCR,MIME\Database\Charset\_iso-2022-jp$ESC,"Codepage",0x10003,932 | ||
HKCR,MIME\Database\Charset\_iso-2022-jp$ESC,"InternetEncoding",0x10003,50221 | ||
From 6e85dc3a77b5989d7ff78723cc2a8359c6e40d05 Mon Sep 17 00:00:00 2001 | ||
From: Liam Middlebrook <[email protected]> | ||
Date: Tue, 11 May 2021 20:23:18 -0700 | ||
Subject: [PATCH] loader: Set default regkey for NVIDIA NGX FullPath | ||
|
||
Sets the default location for the NVIDIA NGX SDK search-path to be | ||
C:\Windows\System32\ | ||
|
||
This is required for supporting NVIDIA DLSS within Proton. | ||
|
||
Reviewed-by: Adam Moss <[email protected]> | ||
--- | ||
loader/wine.inf.in | 12 +++++++++--- | ||
1 file changed, 9 insertions(+), 3 deletions(-) | ||
|
||
diff --git a/loader/wine.inf.in b/loader/wine.inf.in | ||
index 39887d3d84e..f4e0d7f50f5 100644 | ||
--- a/loader/wine.inf.in | ||
+++ b/loader/wine.inf.in | ||
@@ -74,7 +74,8 @@ AddReg=\ | ||
Timezones,\ | ||
VersionInfo,\ | ||
LicenseInformation, \ | ||
- SteamClient | ||
+ SteamClient, \ | ||
+ NVIDIANGX | ||
|
||
[DefaultInstall.ntamd64] | ||
RegisterDlls=RegisterDllsSection | ||
@@ -102,7 +103,8 @@ AddReg=\ | ||
Timezones,\ | ||
VersionInfo.ntamd64,\ | ||
LicenseInformation, \ | ||
- SteamClient.ntamd64 | ||
+ SteamClient.ntamd64, \ | ||
+ NVIDIANGX | ||
|
||
[DefaultInstall.ntarm64] | ||
RegisterDlls=RegisterDllsSection | ||
@@ -145,7 +147,8 @@ AddReg=\ | ||
Tapi,\ | ||
VersionInfo.ntamd64,\ | ||
LicenseInformation, \ | ||
- SteamClient.ntamd64 | ||
+ SteamClient.ntamd64, \ | ||
+ NVIDIANGX | ||
|
||
[Wow64Install.ntarm64] | ||
WineFakeDlls=FakeDllsWin32 | ||
@@ -4261,6 +4264,9 @@ HKCU,Software\Wine\DllOverrides,"ucrtbase",0x2,"native,builtin" | ||
HKCU,Software\Valve\Steam\ActiveProcess,"SteamClientDll64",,"%16426%\Steam\steamclient64.dll" | ||
HKCU,Software\Valve\Steam\ActiveProcess,"SteamPath",,"%16426%\Steam" | ||
HKLM,Software\Wow6432Node\Valve\Steam,"InstallPath",,"%16422%\Steam" | ||
+ | ||
+[NVIDIANGX] | ||
+HKLM,Software\NVIDIA Corporation\Global\NGXCore,"FullPath",,"C:\Windows\System32" | ||
|
||
[NlsFiles] | ||
c_037.nls |