Skip to content

Commit 67f3746

Browse files
authored
Merge pull request #555 from Pedro-Beirao/iwad-not-found
Better "IWAD not found" message
2 parents 17ad5ab + 88d6a06 commit 67f3746

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

prboom2/src/d_main.c

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1166,7 +1166,11 @@ static void IdentifyVersion (void)
11661166
Z_Free(iwad);
11671167
}
11681168
else
1169-
I_Error("IdentifyVersion: IWAD not found\n");
1169+
{
1170+
I_Error("IdentifyVersion: IWAD not found\n\n"
1171+
"Make sure your IWADs are in a folder that dsda-doom searches on\n"
1172+
"For example: %s", I_ConfigDir());
1173+
}
11701174
}
11711175

11721176
//

0 commit comments

Comments
 (0)