From b9c3baafb1d879bc669c37960bd45005c46f73ca Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Sun, 10 Jun 2018 19:09:01 +1000 Subject: [PATCH] Fix DV64 pressure chart segments not displaying --- sleepyhead/SleepLib/loader_plugins/intellipap_loader.cpp | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/sleepyhead/SleepLib/loader_plugins/intellipap_loader.cpp b/sleepyhead/SleepLib/loader_plugins/intellipap_loader.cpp index 4f37ec9f..96eed2ad 100644 --- a/sleepyhead/SleepLib/loader_plugins/intellipap_loader.cpp +++ b/sleepyhead/SleepLib/loader_plugins/intellipap_loader.cpp @@ -922,7 +922,7 @@ int IntellipapLoader::OpenDV6(const QString & path) if (ts1 >= R->start_time) { if (!flow && R->sess) { flow = R->sess->AddEventList(CPAP_FlowRate, EVL_Waveform, 1.0f/60.0f, 0.0f, 0.0f, 0.0f, double(2000) / double(50)); - pressure = R->sess->AddEventList(CPAP_Pressure, EVL_Waveform, 0.1f, 0.0f, 0.0f, 0.0f, double(2000) / double(2)); + pressure = R->sess->AddEventList(CPAP_MaskPressure, EVL_Waveform, 0.1f, 0.0f, 0.0f, 0.0f, double(2000) / double(2)); //leak = R->sess->AddEventList(CPAP_Leak, EVL_Waveform, 1.0, 0.0, 0.0, 0.0, double(2000) / double(1)); OA = R->sess->AddEventList(CPAP_Obstructive, EVL_Event); NOA = R->sess->AddEventList(CPAP_NRI, EVL_Event); @@ -1354,10 +1354,10 @@ int IntellipapLoader::OpenDV6(const QString & path) MV = R->sess->AddEventList(CPAP_MinuteVent, EVL_Event); TV = R->sess->AddEventList(CPAP_TidalVolume, EVL_Event); - if (!R->sess->channelDataExists(CPAP_Pressure)) { + //if (!R->sess->channelDataExists(CPAP_Pressure)) { // Don't use this pressure if we have higher resolution available Pressure = R->sess->AddEventList(CPAP_Pressure, EVL_Event); - } + //} } if (leak) { sess = R->sess;