diff options
author | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-07 21:25:16 +0200 |
---|---|---|
committer | Stanislaw Halik <sthalik@misaki.pl> | 2015-10-07 21:36:50 +0200 |
commit | 7233ba88c0cd55eeddc4453c612a7cce0a7d2da9 (patch) | |
tree | 05f77e56121a95992f9d10666b69fb26aa0d3aa7 /qfunctionconfigurator | |
parent | 0ba8d397995ef955ae5ee99a11355a2c65e16fd8 (diff) |
qfc: try harder to fill all memoized buckets
Diffstat (limited to 'qfunctionconfigurator')
-rw-r--r-- | qfunctionconfigurator/functionconfig.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/qfunctionconfigurator/functionconfig.cpp b/qfunctionconfigurator/functionconfig.cpp index f776acf3..f2e81b17 100644 --- a/qfunctionconfigurator/functionconfig.cpp +++ b/qfunctionconfigurator/functionconfig.cpp @@ -109,7 +109,7 @@ void Map::reload() { const float p0_y = p0.y(), p1_y = p1.y(), p2_y = p2.y(), p3_y = p3.y(); // multiplier helps fill in all the x's needed - const int mult_ = mult * 20; + const int mult_ = mult * 30; const int end = std::min<int>(sz, p2.x() * mult_); const int start = p1.x() * mult; |