Skip to content
Open
Show file tree
Hide file tree
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
Original file line number Diff line number Diff line change
Expand Up @@ -28,14 +28,16 @@ object GameFixesRegistry {
GOG_Fix_2147483047,
GOG_Fix_1787707874,
GOG_Fix_1635627436,
STEAM_Fix_400,
STEAM_Fix_22300,
STEAM_Fix_22380,
STEAM_Fix_22330,
STEAM_Fix_752580,
STEAM_Fix_400,
STEAM_Fix_22370,
STEAM_Fix_22380,
STEAM_Fix_22490,
STEAM_Fix_413150,
STEAM_Fix_3373660,
STEAM_Fix_752580,
STEAM_Fix_1637320,
STEAM_Fix_3373660,
EPIC_Fix_b1b4e0b67a044575820cb5e63028dcae,
EPIC_Fix_dabb52e328834da7bbe99691e374cb84,
EPIC_Fix_59a0c86d02da42e8ba6444cb171e61bf,
Expand Down
15 changes: 15 additions & 0 deletions app/src/main/java/app/gamenative/gamefixes/STEAM_22370.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package app.gamenative.gamefixes

import app.gamenative.data.GameSource

/**
* Fallout 3 GOTY (Steam)
*/
val STEAM_Fix_22370: KeyedGameFix = KeyedRegistryKeyFix(
gameSource = GameSource.STEAM,
gameId = "22370",
registryKey = "Software\\Wow6432Node\\Bethesda Softworks\\Fallout3",
defaultValues = mapOf(
"Installed Path" to INSTALL_PATH_PLACEHOLDER,
),
)
Comment thread
coderabbitai[bot] marked this conversation as resolved.
15 changes: 15 additions & 0 deletions app/src/main/java/app/gamenative/gamefixes/STEAM_22490.kt
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
package app.gamenative.gamefixes

import app.gamenative.data.GameSource

/**
* Fallout: New Vegas PCR (Steam)
*/
val STEAM_Fix_22490: KeyedGameFix = KeyedRegistryKeyFix(
gameSource = GameSource.STEAM,
gameId = "22490",
registryKey = "Software\\Wow6432Node\\Bethesda Softworks\\FalloutNV",
defaultValues = mapOf(
"Installed Path" to INSTALL_PATH_PLACEHOLDER,
),
)
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Loading