From d56edb4afefa365e66af13f29a4d35bb2b1a805d Mon Sep 17 00:00:00 2001 From: salh Date: Wed, 22 Apr 2026 18:09:32 +0300 Subject: [PATCH] Set Texture swap dump and render_capture to false to fix any preformence issues --- out/build/win-amd64-relwithdebinfo/ac6recomp.toml | 2 +- src/ac6_texture_overrides.cpp | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/out/build/win-amd64-relwithdebinfo/ac6recomp.toml b/out/build/win-amd64-relwithdebinfo/ac6recomp.toml index 47cf6377..54b636b5 100644 --- a/out/build/win-amd64-relwithdebinfo/ac6recomp.toml +++ b/out/build/win-amd64-relwithdebinfo/ac6recomp.toml @@ -1,5 +1,5 @@ # Auto-generated cvar configuration -ac6_render_capture = true +ac6_render_capture = false ac6_timing_hooks_enabled = false log_level = "debug" log_file = "ac6recomp.log" diff --git a/src/ac6_texture_overrides.cpp b/src/ac6_texture_overrides.cpp index 749a0da2..0bdb2270 100644 --- a/src/ac6_texture_overrides.cpp +++ b/src/ac6_texture_overrides.cpp @@ -21,7 +21,7 @@ REXCVAR_DECLARE(std::string, user_data_root); REXCVAR_DEFINE_BOOL(ac6_texture_swaps_enabled, true, "AC6/TextureSwaps", "Enable AC6 texture dump and replacement support"); -REXCVAR_DEFINE_BOOL(ac6_texture_swaps_dump_enabled, true, "AC6/TextureSwaps", +REXCVAR_DEFINE_BOOL(ac6_texture_swaps_dump_enabled, false, "AC6/TextureSwaps", "Dump host-ready textures to the user-data texture dump folder"); REXCVAR_DEFINE_BOOL(ac6_texture_swaps_replace_enabled, true, "AC6/TextureSwaps", "Load matching replacement DDS files from the user-data texture override folders");