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
Branches
Tags
1 merge request!1176Give the addfile command variable argument support.
......@@ -3285,7 +3285,10 @@ static void Command_Addfile(void)
// If we've added this one, skip to the next one.
if (fileadded)
{
CONS_Alert(CONS_WARNING, M_GetText("Already processed %s, skipping\n"), fn);
continue;
}
// Disallow non-printing characters and semicolons.
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