diff options
Diffstat (limited to 'defaults/assets/fgmod.sh')
| -rwxr-xr-x | defaults/assets/fgmod.sh | 16 |
1 files changed, 5 insertions, 11 deletions
diff --git a/defaults/assets/fgmod.sh b/defaults/assets/fgmod.sh index 7cd9590..9fc1756 100755 --- a/defaults/assets/fgmod.sh +++ b/defaults/assets/fgmod.sh @@ -145,19 +145,13 @@ cp -f "$fgmod_path/nvngx.dll" "$exe_folder_path/" || true # === Nukem FG Mod Files (now in fgmod directory) === cp -f "$fgmod_path/dlssg_to_fsr3_amd_is_better.dll" "$exe_folder_path/" || true -# cp -f "$fgmod_path/dlssg_to_fsr3.ini" "$exe_folder_path/" || true - # Note: dlssg_to_fsr3.ini is not included in v0.9.0-pre4 archive -# Copy fakenvapi.dll as nvapi64.dll (v1.3.8.1) - this replaces the real NVIDIA API -if [[ -f "$fgmod_path/fakenvapi.dll" ]]; then - cp -f "$fgmod_path/fakenvapi.dll" "$exe_folder_path/nvapi64.dll" || true - echo "📦 Installed fakenvapi.dll as nvapi64.dll" -else - # Legacy fallback for older setups - cp -f "$fgmod_path/nvapi64.dll" "$exe_folder_path/" || true - echo "📦 Using legacy nvapi64.dll" -fi + +# === FakeNVAPI Files === +# Copy fakenvapi.dll with original name (v1.3.8.1) +cp -f "$fgmod_path/fakenvapi.dll" "$exe_folder_path/" || true cp -f "$fgmod_path/fakenvapi.ini" "$exe_folder_path/" || true +echo "📦 Installed fakenvapi.dll and fakenvapi.ini" # === Additional Support Files === # cp -f "$fgmod_path/d3dcompiler_47.dll" "$exe_folder_path/" || true |
