This commit is contained in:
foxnne 2019-09-22 19:37:10 -05:00
commit eef32d1784
2 changed files with 3 additions and 0 deletions

View File

View File

@ -140,6 +140,9 @@ namespace Nez
void PrintSpecialFolderAndSubfolders(string source, string[] validExtensions, bool isCompiledFolder = false)
{
if (!Directory.Exists(source))
return;
var stripPath = isCompiledFolder ? source : "";
PrintContentFiles(source, 3, stripPath, validExtensions);