Fix: inverted return value

This commit is contained in:
Jacques Lucke
2025-10-06 16:19:18 +02:00
parent 90d10a8408
commit d7611d2c6b

View File

@@ -149,9 +149,9 @@ static bool directory_is_empty(const blender::StringRefNull path)
if (FILENAME_IS_CURRPAR(entry.relname)) {
continue;
}
return true;
return false;
}
return false;
return true;
}
static bool disk_bake_exists(const blender::bke::bake::BakePath &path)