- Bumped netgame, demo and min demo version for the weapon slot changes.
- changed weapon slots to be stored per player. Information is now transmitted across the network so that all machines know each player's current weapon configuration so that it can be used by cheats or HUD display routines. SVN r1430 (trunk)
This commit is contained in:
parent
125b0cefaf
commit
4b723beddd
13 changed files with 218 additions and 71 deletions
|
|
@ -49,6 +49,13 @@ char *ReadString (BYTE **stream)
|
|||
return copystring (string);
|
||||
}
|
||||
|
||||
const char *ReadStringConst(BYTE **stream)
|
||||
{
|
||||
const char *string = *((const char **)stream);
|
||||
*stream += strlen (string) + 1;
|
||||
return string;
|
||||
}
|
||||
|
||||
int ReadByte (BYTE **stream)
|
||||
{
|
||||
BYTE v = **stream;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue