Skip to content

Commit 8989b6e

Browse files
authored
make change (#6809)
1 parent 650b8d4 commit 8989b6e

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

code/utils/modular_curves.h

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -241,7 +241,7 @@ struct modular_curves_entry {
241241
int curve_idx = -1;
242242
::util::ParsedRandomFloatRange scaling_factor = ::util::UniformFloatRange(1.f);
243243
::util::ParsedRandomFloatRange translation = ::util::UniformFloatRange(0.f);
244-
bool wraparound = true;
244+
bool wraparound = false;
245245
};
246246

247247
//
@@ -355,7 +355,7 @@ struct modular_curves_definition {
355355
curve_entry.translation = ::util::UniformFloatRange(0.0f);
356356
}
357357

358-
curve_entry.wraparound = true;
358+
curve_entry.wraparound = false;
359359
parse_optional_bool_into("+Wraparound:", &curve_entry.wraparound);
360360

361361
curves[static_cast<std::underlying_type_t<output_enum>>(output_idx)].emplace_back(input_idx, curve_entry);

0 commit comments

Comments
 (0)