From dcf22789257610fd38018bdf1bf94c5e4af4d195 Mon Sep 17 00:00:00 2001 From: Steam Deck User Date: Tue, 21 Mar 2023 10:46:00 -0400 Subject: [PATCH] Force r_dynamic and sv_maxvelocity --- source/psp/video_hardware_main.cpp | 2 +- source/sv_phys.c | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/source/psp/video_hardware_main.cpp b/source/psp/video_hardware_main.cpp index 1f11d10..ddfe1bd 100644 --- a/source/psp/video_hardware_main.cpp +++ b/source/psp/video_hardware_main.cpp @@ -129,7 +129,7 @@ cvar_t r_mipmaps = {"r_mipmaps", "1",qtrue}; cvar_t r_mipmaps_func = {"r_mipmaps_func", "2",qtrue}; // Adjust mip map calculations cvar_t r_mipmaps_bias = {"r_mipmaps_bias", "-7",qtrue}; // Adjust mip map bias cvar_t r_retro = {"r_retro", "0",qtrue}; // dr_mabuse1981: "retro filter". -cvar_t r_dynamic = {"r_dynamic", "1"}; +cvar_t r_dynamic = {"r_dynamic", "0"}; cvar_t r_novis = {"r_novis", "0"}; cvar_t r_tex_scale_down = {"r_tex_scale_down", "1",qtrue}; cvar_t r_particles_simple = {"r_particles_simple", "0",qtrue}; diff --git a/source/sv_phys.c b/source/sv_phys.c index f4f4d06..1056089 100644 --- a/source/sv_phys.c +++ b/source/sv_phys.c @@ -42,7 +42,7 @@ solid_edge items only clip against bsp models. cvar_t sv_friction = {"sv_friction","4",false,true}; cvar_t sv_stopspeed = {"sv_stopspeed","100"}; cvar_t sv_gravity = {"sv_gravity","800",false,true}; -cvar_t sv_maxvelocity = {"sv_maxvelocity","2000"}; +cvar_t sv_maxvelocity = {"sv_maxvelocity","100000"}; cvar_t sv_nostep = {"sv_nostep","0"}; #define MOVE_EPSILON 0.01