diff --git a/src/dxgi/dxgi_options.cpp b/src/dxgi/dxgi_options.cpp index 1da6a738c..05957bbb9 100644 --- a/src/dxgi/dxgi_options.cpp +++ b/src/dxgi/dxgi_options.cpp @@ -29,7 +29,6 @@ namespace dxvk { DxgiOptions::DxgiOptions(const Config& config) { this->deferSurfaceCreation = config.getOption ("dxgi.deferSurfaceCreation", false); - this->fakeDx10Support = config.getOption ("dxgi.fakeDx10Support", false); this->maxFrameLatency = config.getOption ("dxgi.maxFrameLatency", 0); this->customVendorId = parsePciId(config.getOption("dxgi.customVendorId")); this->customDeviceId = parsePciId(config.getOption("dxgi.customDeviceId")); diff --git a/src/dxgi/dxgi_options.h b/src/dxgi/dxgi_options.h index 5a6392aad..a1736b835 100644 --- a/src/dxgi/dxgi_options.h +++ b/src/dxgi/dxgi_options.h @@ -20,11 +20,6 @@ namespace dxvk { /// for a single window that may interfere with each other. bool deferSurfaceCreation; - /// Report to the app that Dx10 interfaces are supported, - /// even if they are not actually supported. Some apps - /// refuse to start without it, some don't work with it. - bool fakeDx10Support; - /// Override maximum frame latency if the app specifies /// a higher value. May help with frame timing issues. int32_t maxFrameLatency; diff --git a/src/util/config/config.cpp b/src/util/config/config.cpp index a244e178e..81dc64e6a 100644 --- a/src/util/config/config.cpp +++ b/src/util/config/config.cpp @@ -31,10 +31,6 @@ namespace dxvk { { "Frostpunk.exe", {{ { "dxgi.deferSurfaceCreation", "True" }, }} }, - /* Just Cause 2 (Dx10) */ - { "JustCause2.exe", {{ - { "dxgi.fakeDx10Support", "True" }, - }} }, /* Mafia 3 */ { "mafia3.exe", {{ { "d3d11.fakeStreamOutSupport", "True" }, @@ -43,30 +39,6 @@ namespace dxvk { { "Overwatch.exe", {{ { "d3d11.fakeStreamOutSupport", "True" }, }} }, - /* Sleeping Dogs */ - { "HKShip.exe", {{ - { "dxgi.fakeDx10Support", "True" }, - }} }, - /* Sleeping Dogs: Definitive Edition */ - { "SDHDShip.exe", {{ - { "dxgi.fakeDx10Support", "True" }, - }} }, - /* Stalker: Call of Pripyat */ - { "Stalker-COP.exe", {{ - { "dxgi.fakeDx10Support", "True" }, - }} }, - /* World of Warcraft */ - { "Wow.exe", {{ - { "dxgi.fakeDx10Support", "True" }, - }} }, - /* World of Warcraft Beta */ - { "WowB.exe", {{ - { "dxgi.fakeDx10Support", "True" }, - }} }, - /* World of Warcraft Test Branch */ - { "WowT.exe", {{ - { "dxgi.fakeDx10Support", "True" }, - }} }, }};