Use defines for lengths

This commit is contained in:
NepDisk 2026-03-29 16:33:24 -04:00
parent 7f134d27ce
commit 6f7c466459

View file

@ -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;