Skip to content

Commit

Permalink
- fixed two vr_* CVARs not getting archived.
Browse files Browse the repository at this point in the history
  • Loading branch information
coelckers committed Aug 10, 2021
1 parent 8747145 commit a16088f
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions src/common/rendering/hwrenderer/data/hw_vrmodes.cpp
Expand Up @@ -33,10 +33,10 @@
#include "i_interface.h"

// Set up 3D-specific console variables:
CVAR(Int, vr_mode, 0, CVAR_GLOBALCONFIG)
CVAR(Int, vr_mode, 0, CVAR_GLOBALCONFIG|CVAR_ARCHIVE)

// switch left and right eye views
CVAR(Bool, vr_swap_eyes, false, CVAR_GLOBALCONFIG)
CVAR(Bool, vr_swap_eyes, false, CVAR_GLOBALCONFIG | CVAR_ARCHIVE)

// intraocular distance in meters
CVAR(Float, vr_ipd, 0.062f, CVAR_ARCHIVE|CVAR_GLOBALCONFIG) // METERS
Expand Down

0 comments on commit a16088f

Please sign in to comment.