Skip to content

Commit

Permalink
Browse files Browse the repository at this point in the history
FS: Cleanup
  • Loading branch information
skyjake committed Apr 12, 2012
1 parent f9ab162 commit db82879
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions doomsday/engine/portable/src/fs_main.c
Expand Up @@ -675,7 +675,7 @@ lumpnum_t F_CheckLumpNumForName2(const char* name, boolean silent)
size_t lumpSize = 0;
size_t refSize;

Con_Message("checking for \"%s\"\n", name);
//Con_Message("checking for \"%s\"\n", name);

errorIfNotInited("F_CheckLumpNumForName");

Expand Down Expand Up @@ -741,7 +741,7 @@ lumpnum_t F_CheckLumpNumForName2(const char* name, boolean silent)
}

// If still not found, warn the user.
if(/*!silent &&*/ lumpNum < 0)
if(!silent && lumpNum < 0)
{
if(sizeCond == LSCOND_NONE)
{
Expand All @@ -750,7 +750,7 @@ lumpnum_t F_CheckLumpNumForName2(const char* name, boolean silent)
else
{
Con_Message("Warning: F_CheckLumpNumForName: Lump \"%s\" with size%s%i not found.\n",
name, sizeCond==LSCOND_EQUAL? "==" :
Str_Text(&searchPath), sizeCond==LSCOND_EQUAL? "==" :
sizeCond==LSCOND_GREATER_OR_EQUAL? ">=" : "<=", (int)refSize);
}
}
Expand Down

0 comments on commit db82879

Please sign in to comment.