We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 778670c commit 1472855Copy full SHA for 1472855
src/backend/utils.ts
@@ -942,7 +942,7 @@ export async function checkWineBeforeLaunch(
942
943
appendGamePlayLog(
944
gameInfo,
945
- `Wine version ${gameSettings.wineVersion.name} is not valid, trying another one.`
+ `Wine version ${gameSettings.wineVersion.name} is not valid, trying another one.\n`
946
)
947
}
948
@@ -957,6 +957,10 @@ export async function checkWineBeforeLaunch(
957
958
if (response === 0) {
959
logInfo(`Changing wine version to ${defaultwine.name}`)
960
+ appendGamePlayLog(
961
+ gameInfo,
962
+ `Changing wine version to ${defaultwine.name}\n`
963
+ )
964
gameSettings.wineVersion = defaultwine
965
GameConfig.get(gameInfo.app_name).setSetting('wineVersion', defaultwine)
966
return true
0 commit comments