mirror of
https://git.do.srb2.org/STJr/SRB2.git
synced 2024-11-15 09:11:48 +00:00
Fix two compiler warnings
This commit is contained in:
parent
9658ef2c5b
commit
51947319ee
1 changed files with 2 additions and 2 deletions
|
@ -268,8 +268,8 @@ static int io_openlocal (lua_State *L) {
|
|||
|
||||
void Got_LuaFile(UINT8 **cp, INT32 playernum)
|
||||
{
|
||||
FILE **pf;
|
||||
boolean success = READUINT8(*cp); // The first (and only) byte indicates whether the file could be opened
|
||||
FILE **pf = NULL;
|
||||
UINT8 success = READUINT8(*cp); // The first (and only) byte indicates whether the file could be opened
|
||||
|
||||
if (playernum != serverplayer)
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue