Actually have matrixed cubes working

This commit is contained in:
2023-02-24 22:32:28 -08:00
parent 1d39e86d91
commit 49272be17c
11 changed files with 132 additions and 53 deletions

View File

@ -117,10 +117,11 @@ int32_t GeneratedLanguages::scanDir(
std::vector<std::string> *files
) {
DIR* handle = opendir(dir.c_str());
if(ENOENT == errno || !handle) {
if(ENOENT == errno) {
*error = "Input directory \"" + dir + "\" does not exist";
return 1;
return 0;
}
if(!handle) return 0;
struct dirent *entry;
while((entry=readdir(handle))) {