Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions src/main/java/com/radiance/client/RadianceClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void onInitializeClient() {
Path dlssDTargetPath = radianceDir.resolve("nvngx_dlssd.dll");

if (!Files.exists(dlssTargetPath) || !Files.exists(dlssDTargetPath)) {
throw new RuntimeException("DLSS runtime libraries not found!");
throw new RuntimeException("DLSS runtime libraries not found! Please make sure they are present in " + radianceDir);
}
} else if (osName.toLowerCase().contains("linux")) {
Path soTargetPath = radianceDir.resolve("libcore.so");
Expand All @@ -71,7 +71,7 @@ public void onInitializeClient() {
Path dlssDTargetPath = radianceDir.resolve("libnvidia-ngx-dlssd.so.310.5.3");

if (!Files.exists(dlssTargetPath) || !Files.exists(dlssDTargetPath)) {
throw new RuntimeException("DLSS runtime libraries not found!");
throw new RuntimeException("DLSS runtime libraries not found! Please make sure they are present in " + radianceDir);
}
} else {
throw new RuntimeException("The OS " + osName + " is not supported");
Expand Down