diff options
author | M. Kristall <mkpdev@gmail.com> | 2010-03-02 18:05:32 +0000 |
---|---|---|
committer | Tim Angus <tim@ngus.net> | 2013-01-03 00:17:29 +0000 |
commit | af1497d4f6974219a6a81821dc5d8a00343722cc (patch) | |
tree | b999004fb7634e95da14371539d6b8239d8c90b0 /src/game/g_local.h | |
parent | 24d30c07f57f9f0ace0c945c7c41a38188844d2e (diff) |
* Use bitmasks instead of arrays for keeping track of whether/how a player voted
Diffstat (limited to 'src/game/g_local.h')
-rw-r--r-- | src/game/g_local.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/game/g_local.h b/src/game/g_local.h index 0a895820..a4acf39b 100644 --- a/src/game/g_local.h +++ b/src/game/g_local.h @@ -325,8 +325,8 @@ typedef struct // used to save persistant[] values while in SPECTATOR_FOLLOW mode int credit; - qboolean voted[ NUM_TEAMS ]; - qboolean vote[ NUM_TEAMS ]; + int voted; + int vote; // flood protection int floodDemerits; |