From a5dc9fd65233b0a551dd19b13235e29d89def97d Mon Sep 17 00:00:00 2001
From: Markus Quaritsch <markus.quaritsch@tugraz.at>
Date: Mon, 27 Jun 2022 15:26:22 +0200
Subject: [PATCH] bugfix driving cycle reader: copy highway flag when copying
 cycle entries

---
 .../Models/SimulationComponent/Data/DrivingCycleData.cs          | 1 +
 1 file changed, 1 insertion(+)

diff --git a/VectoCore/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs b/VectoCore/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
index ead6520b54..e1a85359dd 100644
--- a/VectoCore/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
+++ b/VectoCore/VectoCore/Models/SimulationComponent/Data/DrivingCycleData.cs
@@ -145,6 +145,7 @@ namespace TUGraz.VectoCore.Models.SimulationComponent.Data
 				EngineSpeed = entry.EngineSpeed;
 				FanSpeed = entry.FanSpeed;
 				PTOPowerDemandDuringDrive = entry.PTOPowerDemandDuringDrive;
+				Highway = entry.Highway;
 			}
 
 			/// <summary>
-- 
GitLab