fix missing ')'

This commit is contained in:
Marios S. Kyriakou
2024-08-01 09:06:04 +03:00
parent 03e889d675
commit 17b14e2178

View File

@@ -4554,7 +4554,7 @@ int DLLEXPORT EN_loadpatternfile(EN_Project p, const char *filename, const char
while (fgets(line, sizeof(line), file) != NULL) { while (fgets(line, sizeof(line), file) != NULL) {
// Skip lines that don't contain valid numbers // Skip lines that don't contain valid numbers
if (!getfloat(line, &value) continue; if (!getfloat(line, &value)) continue;
// Resize multiplier array if it's full // Resize multiplier array if it's full
if (len % CHUNK == 0) { if (len % CHUNK == 0) {