mirror of
https://github.com/KartKrewDev/RingRacers.git
synced 2025-10-30 08:01:28 +00:00
Futureproof against strict buildbots.
This commit is contained in:
parent
3514ecdec8
commit
33d026ed5a
1 changed files with 2 additions and 1 deletions
|
|
@ -3267,13 +3267,14 @@ static void Command_Addfile(void)
|
||||||
char buf[256];
|
char buf[256];
|
||||||
char *buf_p = buf;
|
char *buf_p = buf;
|
||||||
INT32 i;
|
INT32 i;
|
||||||
|
size_t ii;
|
||||||
int musiconly; // W_VerifyNMUSlumps isn't boolean
|
int musiconly; // W_VerifyNMUSlumps isn't boolean
|
||||||
boolean fileadded = false;
|
boolean fileadded = false;
|
||||||
|
|
||||||
fn = COM_Argv(curarg);
|
fn = COM_Argv(curarg);
|
||||||
|
|
||||||
// For the amount of filenames previously processed...
|
// For the amount of filenames previously processed...
|
||||||
for (size_t ii = 0; ii < numfilesadded; ii++)
|
for (ii = 0; ii < numfilesadded; ii++)
|
||||||
{
|
{
|
||||||
// If this is one of them, don't try to add it.
|
// If this is one of them, don't try to add it.
|
||||||
if (!strcmp(fn, addedfiles[ii]))
|
if (!strcmp(fn, addedfiles[ii]))
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue