Skip to content
Snippets Groups Projects
Commit 2d3a5891 authored by Golden's avatar Golden
Browse files

Add warning when files are skipped due to being previously processed.

parent 0b748187
No related branches found
No related tags found
No related merge requests found
...@@ -3285,7 +3285,10 @@ static void Command_Addfile(void) ...@@ -3285,7 +3285,10 @@ static void Command_Addfile(void)
// If we've added this one, skip to the next one. // If we've added this one, skip to the next one.
if (fileadded) if (fileadded)
{
CONS_Alert(CONS_WARNING, M_GetText("Already processed %s, skipping\n"), fn);
continue; continue;
}
// Disallow non-printing characters and semicolons. // Disallow non-printing characters and semicolons.
for (i = 0; fn[i] != '\0'; i++) for (i = 0; fn[i] != '\0'; i++)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment