FIX: Cache now resetting to NAN instead of 0

This commit is contained in:
Patrick Haßel 2025-01-16 16:20:57 +01:00
parent 22407418bd
commit fc45bf95af

View File

@ -26,7 +26,7 @@ private:
void clearWriteEntry() { void clearWriteEntry() {
for (double& value: r->data) { for (double& value: r->data) {
value = 0; value = NAN;
} }
} }