mirror of
https://github.com/yquake2/yquake2remaster.git
synced 2025-02-20 10:53:22 +00:00
Remove static keyword on some variables (these actually not static)
Caused by 1e52d35e84
This commit is contained in:
parent
e4bb8b25a3
commit
1dc71dbd97
1 changed files with 7 additions and 7 deletions
|
@ -84,14 +84,14 @@ cvar_t *vid_fullscreen;
|
|||
static cvar_t *in_grab;
|
||||
static cvar_t *in_mouse;
|
||||
static cvar_t *exponential_speedup;
|
||||
static cvar_t *freelook;
|
||||
static cvar_t *lookstrafe;
|
||||
static cvar_t *m_forward;
|
||||
cvar_t *freelook;
|
||||
cvar_t *lookstrafe;
|
||||
cvar_t *m_forward;
|
||||
static cvar_t *m_filter;
|
||||
static cvar_t *m_pitch;
|
||||
static cvar_t *m_side;
|
||||
static cvar_t *m_yaw;
|
||||
static cvar_t *sensitivity;
|
||||
cvar_t *m_pitch;
|
||||
cvar_t *m_side;
|
||||
cvar_t *m_yaw;
|
||||
cvar_t *sensitivity;
|
||||
static cvar_t *windowed_mouse;
|
||||
|
||||
/* ------------------------------------------------------------------ */
|
||||
|
|
Loading…
Reference in a new issue