mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2026-04-26 12:01:47 +00:00
Replace MAX_WADPATH with plain numbers
This is not ideal either, but I would rather not use a constant for something unrelated.
This commit is contained in:
parent
325872de4e
commit
6739fcff69
2 changed files with 2 additions and 2 deletions
|
|
@ -98,7 +98,7 @@ INT32 lastfilenum = -1;
|
||||||
#ifdef HAVE_BLUA
|
#ifdef HAVE_BLUA
|
||||||
luafiletransfer_t *luafiletransfers = NULL;
|
luafiletransfer_t *luafiletransfers = NULL;
|
||||||
boolean waitingforluafiletransfer = false;
|
boolean waitingforluafiletransfer = false;
|
||||||
char luafiledir[MAX_WADPATH] = "luafiles";
|
char luafiledir[256 + 16] = "luafiles";
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
|
|
||||||
|
|
|
||||||
|
|
@ -93,7 +93,7 @@ typedef struct luafiletransfer_s
|
||||||
|
|
||||||
extern luafiletransfer_t *luafiletransfers;
|
extern luafiletransfer_t *luafiletransfers;
|
||||||
extern boolean waitingforluafiletransfer;
|
extern boolean waitingforluafiletransfer;
|
||||||
extern char luafiledir[MAX_WADPATH];
|
extern char luafiledir[256 + 16];
|
||||||
|
|
||||||
void AddLuaFileTransfer(const char *filename, const char *mode);
|
void AddLuaFileTransfer(const char *filename, const char *mode);
|
||||||
void SV_PrepareSendLuaFileToNextNode(void);
|
void SV_PrepareSendLuaFileToNextNode(void);
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue