From d36b1b38304d58da3daadff76aba0da9bd37b278 Mon Sep 17 00:00:00 2001 From: disjtqz Date: Thu, 12 Oct 2023 16:51:43 -0400 Subject: [PATCH] [GPU] gpu_allow_invalid_fetch_constants true by default --- src/xenia/gpu/gpu_flags.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/xenia/gpu/gpu_flags.cc b/src/xenia/gpu/gpu_flags.cc index 112b5c04d..e6ae0ad69 100644 --- a/src/xenia/gpu/gpu_flags.cc +++ b/src/xenia/gpu/gpu_flags.cc @@ -23,7 +23,7 @@ DEFINE_bool(vsync, true, "Enable VSYNC.", "GPU"); DEFINE_uint64(vsync_fps, 60, "VSYNC frames per second", "GPU"); DEFINE_bool( - gpu_allow_invalid_fetch_constants, false, + gpu_allow_invalid_fetch_constants, true, "Allow texture and vertex fetch constants with invalid type - generally " "unsafe because the constant may contain completely invalid values, but " "may be used to bypass fetch constant type errors in certain games until "