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
@@ -0,0 +1,14 @@
package app.gamenative.gamefixes

import app.gamenative.data.GameSource

/**
* Kingdom Hearts III (Epic)
*/
val EPIC_Fix_e345fdb9186645a48d30c3f85a8951dc: KeyedGameFix = KeyedWineEnvVarFix(
gameSource = GameSource.EPIC,
gameId = "e345fdb9186645a48d30c3f85a8951dc",
envVarsToSet = mapOf(
"WINEDLLOVERRIDES" to "mf=n;mfmediaengine=n",
),
)
Original file line number Diff line number Diff line change
Expand Up @@ -38,6 +38,7 @@ object GameFixesRegistry {
STEAM_Fix_1637320,
EPIC_Fix_b1b4e0b67a044575820cb5e63028dcae,
EPIC_Fix_dabb52e328834da7bbe99691e374cb84,
EPIC_Fix_e345fdb9186645a48d30c3f85a8951dc,
EPIC_Fix_59a0c86d02da42e8ba6444cb171e61bf,
).associateBy { it.gameSource to it.gameId }

Expand Down
Loading