mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-02-25 23:11:20 +00:00
Remove VHS filter
- It does not seem to be working and hasn't for a while. - Was interfering with 3d rendering skipping.
This commit is contained in:
parent
c7c8bfa89a
commit
360bbf6552
4 changed files with 0 additions and 10 deletions
|
|
@ -439,7 +439,6 @@ consvar_t cv_scr_y = Player("scr_y", "0.0").floating_point();
|
|||
|
||||
consvar_t cv_seenames = Player("seenames", "On").on_off();
|
||||
consvar_t cv_shadow = Player("shadow", "On").on_off();
|
||||
consvar_t cv_shittyscreen = Player("televisionsignal", "Okay").flags(CV_NOSHOWHELP).values({{0, "Okay"}, {1, "Shitty"}, {2, "Extra Shitty"}}).dont_save();
|
||||
consvar_t cv_showfocuslost = Player("showfocuslost", "Yes").yes_no();
|
||||
|
||||
void R_SetViewSize(void);
|
||||
|
|
@ -468,8 +467,6 @@ consvar_t cv_tutorialprompt = Player("tutorialprompt", "On").on_off();
|
|||
void I_StartupMouse(void);
|
||||
consvar_t cv_usemouse = Player("use_mouse", "Off").values({{0, "Off"}, {1, "On"}, {2, "Force"}}).onchange(I_StartupMouse);
|
||||
|
||||
consvar_t cv_vhseffect = Player("vhspause", "On").on_off();
|
||||
|
||||
// synchronize page flipping with screen refresh
|
||||
extern "C++"
|
||||
{
|
||||
|
|
|
|||
|
|
@ -781,9 +781,6 @@ static bool D_Display(bool world)
|
|||
//
|
||||
if (!wipe)
|
||||
{
|
||||
if (cv_shittyscreen.value)
|
||||
V_DrawVhsEffect(cv_shittyscreen.value == 2);
|
||||
|
||||
if (cv_netstat.value)
|
||||
{
|
||||
char s[50];
|
||||
|
|
|
|||
|
|
@ -2033,9 +2033,6 @@ void HU_Drawer(void)
|
|||
}
|
||||
}
|
||||
|
||||
if (cv_vhseffect.value && (paused || (demo.playback && cv_playbackspeed.value > 1)))
|
||||
V_DrawVhsEffect(demo.rewinding);
|
||||
|
||||
// draw desynch text
|
||||
if (hu_redownloadinggamestate)
|
||||
{
|
||||
|
|
|
|||
|
|
@ -136,7 +136,6 @@ extern UINT8 *scr_borderpatch; // patch used to fill the view borders
|
|||
|
||||
extern consvar_t cv_scr_width, cv_scr_height, cv_scr_depth, cv_renderview, cv_renderer, cv_renderhitbox, cv_fullscreen;
|
||||
extern consvar_t cv_scr_effect;
|
||||
extern consvar_t cv_vhseffect, cv_shittyscreen;
|
||||
extern consvar_t cv_parallelsoftware;
|
||||
|
||||
// wait for page flipping to end or not
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue