From 26517a0ef920eb7dc89663ee599c1f1d06166c88 Mon Sep 17 00:00:00 2001 From: Shane Smiskol Date: Mon, 26 Sep 2022 23:50:49 -0700 Subject: [PATCH] replay: set CarParamsPersistent --- tools/replay/replay.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/tools/replay/replay.cc b/tools/replay/replay.cc index 3e482b5474..c6c78f47ae 100644 --- a/tools/replay/replay.cc +++ b/tools/replay/replay.cc @@ -290,6 +290,7 @@ void Replay::startStream(const Segment *cur_segment) { auto words = capnp::messageToFlatArray(builder); auto bytes = words.asBytes(); Params().put("CarParams", (const char *)bytes.begin(), bytes.size()); + Params().put("CarParamsPersistent", (const char *)bytes.begin(), bytes.size()); } else { rWarning("failed to read CarParams from current segment"); }