Posted October 09, 2020
high rated
Original Solution Discussion Thread.
With a 64-bit WINE prefix install the game.
The game does graphics driver detection using magic values that only make sense on Windows. So, to disable automatic graphics driver detection go to this location: "<installation folder>/Content/Talos/Config" and edit the file named "CheckDriver.lua". Replace the entire contents of the file with:
gfx_iReqDriverVersion = 0;
gfx_bWrongDriver = 0;
Then in the "<installation folder>" create a new folder called "UserData". In this folder create a new file called "Talos.ini" with the following lines:
gfx_strAPI = "Vulkan";
sfx_strAPI = "XAudio";
sfx_strAudioDevice = "ID:0";
This minimal configuration should allow the game to launch properly. DXVK is not required at any time.
The game executable is "<installation folder>/Bin/x64/Talos.exe"
1. Vulkan has to be set in the ini file as changing the graphics API in-game crashes.
2. Do not use the OpenAL audio backend or that will cause graphical glitches.
3. Specifying the default device for audio fixes sound problems.
With a 64-bit WINE prefix install the game.
The game does graphics driver detection using magic values that only make sense on Windows. So, to disable automatic graphics driver detection go to this location: "<installation folder>/Content/Talos/Config" and edit the file named "CheckDriver.lua". Replace the entire contents of the file with:
gfx_iReqDriverVersion = 0;
gfx_bWrongDriver = 0;
Then in the "<installation folder>" create a new folder called "UserData". In this folder create a new file called "Talos.ini" with the following lines:
gfx_strAPI = "Vulkan";
sfx_strAPI = "XAudio";
sfx_strAudioDevice = "ID:0";
This minimal configuration should allow the game to launch properly. DXVK is not required at any time.
The game executable is "<installation folder>/Bin/x64/Talos.exe"
1. Vulkan has to be set in the ini file as changing the graphics API in-game crashes.
2. Do not use the OpenAL audio backend or that will cause graphical glitches.
3. Specifying the default device for audio fixes sound problems.
Post edited October 09, 2020 by headkase.194