From 4f5cc40c40946c3ca17021394e7a9754ead023f7 Mon Sep 17 00:00:00 2001 From: Elias Sturim <267715325+sturimcode@users.noreply.github.com> Date: Sun, 12 Jul 2026 20:31:39 -0400 Subject: [PATCH] fix: correct four cyberpunk-2077 configMap errors found on real hardware Verified against a real UserSettings.json (Steam install, Windows 11) during the 2026-07 Windows smoke test: - dlss lives at /graphics/presets/DLSS; /graphics/dynamicresolution does not exist in the real file - texture-quality lives at /graphics/presets/TextureQuality, not /graphics/basic - crowd-density lives at /gameplay/performance/CrowdDensity, not /gameplay/misc - SSR top value is named Insane in the file; Psycho is only the menu label These errors broke apply and all benchmark recording in the app (the pre-record settings snapshot fails on the first bad path). Co-Authored-By: Claude Fable 5 --- games/cyberpunk-2077.json | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/games/cyberpunk-2077.json b/games/cyberpunk-2077.json index 40aa33c..25594ba 100644 --- a/games/cyberpunk-2077.json +++ b/games/cyberpunk-2077.json @@ -25,7 +25,7 @@ "settings": { "dlss": { "fileId": "usersettings", - "key": "/graphics/dynamicresolution/DLSS", + "key": "/graphics/presets/DLSS", "type": "enum", "values": ["Off", "Auto", "Ultra Performance", "Performance", "Balanced", "Quality"] }, @@ -45,7 +45,7 @@ "fileId": "usersettings", "key": "/graphics/advanced/ScreenSpaceReflectionsQuality", "type": "enum", - "values": ["Off", "Low", "Medium", "High", "Ultra", "Psycho"] + "values": ["Off", "Low", "Medium", "High", "Ultra", "Insane"] }, "shadow-resolution": { "fileId": "usersettings", @@ -61,13 +61,13 @@ }, "crowd-density": { "fileId": "usersettings", - "key": "/gameplay/misc/CrowdDensity", + "key": "/gameplay/performance/CrowdDensity", "type": "enum", "values": ["Low", "Medium", "High"] }, "texture-quality": { "fileId": "usersettings", - "key": "/graphics/basic/TextureQuality", + "key": "/graphics/presets/TextureQuality", "type": "enum", "values": ["Low", "Medium", "High"] }