Fix bad filename in visualization

This commit is contained in:
Leonetienne 2022-05-26 18:59:05 +02:00
parent c0418766d9
commit cad96a19a2
No known key found for this signature in database
GPG Key ID: C33879CD92E9708C

View File

@ -62,7 +62,7 @@ int main() {
bmp.SetPixel(Vector2i(x, y), pixel);
}
bmp.Write(execName+"-operator()-grayscale.bmp");
bmp.Write(execName+"-operator-grayscale.bmp");
}
);
@ -102,7 +102,7 @@ int main() {
bmp.SetPixel(Vector2i(x, y), r, g, b);
}
bmp.Write(execName+"-operator()-color.bmp");
bmp.Write(execName+"-operator-color.bmp");
}
);