1
0
mirror of https://github.com/doitsujin/dxvk.git synced 2025-03-15 07:29:17 +01:00

[util] Limit device memory size to 4095 MB for Life is Feudal MMO

Reporting 4GB or more VRAM causes an integer overflow in this game.
Fixes #591.
This commit is contained in:
Philip Rebohle 2018-08-25 01:23:22 +02:00
parent 57db0b60fb
commit 73cbf5b352

View File

@ -31,6 +31,11 @@ namespace dxvk {
{ "Frostpunk.exe", {{ { "Frostpunk.exe", {{
{ "dxgi.deferSurfaceCreation", "True" }, { "dxgi.deferSurfaceCreation", "True" },
}} }, }} },
/* Life is Feudal MMO */
{ "cm_client.exe", {{
{ "dxgi.maxDeviceMemory", "4095" },
{ "dxgi.maxSharedMemory", "4095" },
}} },
/* Mafia 3 */ /* Mafia 3 */
{ "mafia3.exe", {{ { "mafia3.exe", {{
{ "d3d11.fakeStreamOutSupport", "True" }, { "d3d11.fakeStreamOutSupport", "True" },