[nq] Get intermission view working again

This is currently just the basic intermission view (not the finale view
or the deathmatch intermission view).
This commit is contained in:
Bill Currie 2022-11-03 17:49:05 +09:00
parent a07eccd5c7
commit bdbb8f1e0b
8 changed files with 110 additions and 56 deletions

View file

@ -65,15 +65,15 @@ typedef struct viewstate_s {
float height;
int weaponframe;
int onground; // -1 when in air
int active:1;
int loading:1;
int watervis:1;
int demoplayback:1;
int drift_enabled:1;
int voffs_enabled:1;
int bob_enabled:1;
int intermission:1;
int decay_punchangle:1;
unsigned active:1;
unsigned loading:1;
unsigned watervis:1;
unsigned demoplayback:1;
unsigned drift_enabled:1;
unsigned voffs_enabled:1;
unsigned bob_enabled:1;
unsigned intermission:1;
unsigned decay_punchangle:1;
int force_cshifts; // bitfield of server enforced cshifts
uint32_t flags;