diff options
-rw-r--r-- | common/kernel/property.h | 1 | ||||
-rw-r--r-- | generic/viaduct/fabulous/fabulous.cc | 1 |
2 files changed, 2 insertions, 0 deletions
diff --git a/common/kernel/property.h b/common/kernel/property.h index 814b2cac..2ff085ec 100644 --- a/common/kernel/property.h +++ b/common/kernel/property.h @@ -46,6 +46,7 @@ struct Property Property(const std::string &strval); Property(State bit); Property &operator=(const Property &other) = default; + Property(const Property &other) = default; bool is_string; diff --git a/generic/viaduct/fabulous/fabulous.cc b/generic/viaduct/fabulous/fabulous.cc index 9cb7e74f..3c6f025f 100644 --- a/generic/viaduct/fabulous/fabulous.cc +++ b/generic/viaduct/fabulous/fabulous.cc @@ -69,6 +69,7 @@ struct FabulousImpl : ViaductAPI blk_trk = std::make_unique<BlockTracker>(ctx, cfg); is_new_fab ? init_bels_v2() : init_bels_v1(); init_pips(); + ctx->setDelayScaling(0.25, 0.5); } void pack() override { fabulous_pack(ctx, cfg); } |