Missing inc files in asm/*.s and data/*.s will raise an actual error message.

This commit is contained in:
luckytyphlosion
2020-11-12 11:04:38 -05:00
parent 8a780977a8
commit 5029c90979
2 changed files with 25 additions and 12 deletions

View File

@@ -108,7 +108,7 @@ int main(int argc, char **argv)
break;
}
}
if (!exists && file.FileType() == SourceFileType::Asm)
if (!exists && (file.FileType() == SourceFileType::Asm || file.FileType() == SourceFileType::Inc))
{
path = include;
}