Use defines for lengths
This commit is contained in:
parent
7f134d27ce
commit
6f7c466459
1 changed files with 2 additions and 2 deletions
|
|
@ -64,8 +64,8 @@ extern char srb2path[256]; //Alam: SRB2's Home
|
|||
|
||||
const char *D_GetFancyBranchName(void);
|
||||
|
||||
extern uint8_t public_key[MAXSPLITSCREENPLAYERS][32];
|
||||
extern uint8_t secret_key[MAXSPLITSCREENPLAYERS][64];
|
||||
extern uint8_t public_key[MAXSPLITSCREENPLAYERS][PUBKEYLENGTH];
|
||||
extern uint8_t secret_key[MAXSPLITSCREENPLAYERS][PRIVKEYLENGTH];
|
||||
|
||||
// the infinite loop of D_SRB2Loop() called from win_main for windows version
|
||||
void D_SRB2Loop(void) FUNCNORETURN;
|
||||
|
|
|
|||
Loading…
Reference in a new issue