diff --git a/SleepyHead.depend b/SleepyHead.depend index 630b18e9..97f3861c 100644 --- a/SleepyHead.depend +++ b/SleepyHead.depend @@ -7870,7 +7870,7 @@ -1306553009 /home/mark/projects/git/sleepyhead/version.h +1306553923 /home/mark/projects/git/sleepyhead/version.h 1306549105 /home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.h "machine.h" @@ -7901,7 +7901,7 @@ "SleepyHeadMain.h" "sleeplib/profiles.h" -1306553006 source:/home/mark/projects/git/sleepyhead/graphs/graph.cpp +1306553922 source:/home/mark/projects/git/sleepyhead/graphs/graph.cpp @@ -7947,7 +7947,7 @@ "machine_loader.h" "tinyxml/tinyxml.h" -1306552903 source:/home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.cpp +1306553279 source:/home/mark/projects/git/sleepyhead/libs/sleeplib/prs1_loader.cpp diff --git a/graphs/graph.cpp b/graphs/graph.cpp index badb5aa6..45cbb56b 100644 --- a/graphs/graph.cpp +++ b/graphs/graph.cpp @@ -1560,7 +1560,8 @@ void FlowData::Reload(Day *day) for (auto s=day->begin();s!=day->end(); s++) { if ((*s)->waveforms.find(code)==(*s)->waveforms.end()) continue; for (auto l=(*s)->waveforms[code].begin();l!=(*s)->waveforms[code].end();l++) { - if (vc<=(int)point.size()) { + int ps=point.size(); + if (vc>=ps) { AddSegment(max_points); // TODO: Add size limit capabilities. } int t=0; @@ -1626,7 +1627,7 @@ void PressureData::Reload(Day *day) bool first=true; for (auto s=day->begin();s!=day->end(); s++) { if ((*s)->events.find(code)==(*s)->events.end()) continue; - if (vc<=(int)point.size()) { + if (vc>=(int)point.size()) { AddSegment(max_points); } @@ -1777,7 +1778,7 @@ void AHIData::Reload(Day *day) } FlagData::FlagData(MachineCode _code,double _value,int _field,int _offset) -:gPointData(512),code(_code),value(_value),field(_field),offset(_offset) +:gPointData(1024),code(_code),value(_value),field(_field),offset(_offset) { AddSegment(max_points); } diff --git a/libs/sleeplib/prs1_loader.cpp b/libs/sleeplib/prs1_loader.cpp index c2384709..0129e98b 100644 --- a/libs/sleeplib/prs1_loader.cpp +++ b/libs/sleeplib/prs1_loader.cpp @@ -599,7 +599,7 @@ bool PRS1Loader::OpenWaveforms(Session *session,wxString filename) if (sum!=header[hl-1]) return false; - if (samples+size>max_load_buffer_size) { + if (samples+size>=max_load_buffer_size) { wxLogError(wxT("max_load_buffer_size is too small in PRS1 Loader")); if (cnt==0) return false; break; diff --git a/version.h b/version.h index 2e1eeb0a..df3c944a 100644 --- a/version.h +++ b/version.h @@ -16,14 +16,14 @@ namespace AutoVersion{ //Standard Version Type static const long MAJOR = 0; static const long MINOR = 7; - static const long BUILD = 1402; - static const long REVISION = 2124; + static const long BUILD = 1406; + static const long REVISION = 2152; //Miscellaneous Version Types - static const long BUILDS_COUNT = 5151; - #define RC_FILEVERSION 0,7,1402,2124 - #define RC_FILEVERSION_STRING "0, 7, 1402, 2124\0" - static const char FULLVERSION_STRING[] = "0.7.1402.2124"; + static const long BUILDS_COUNT = 5159; + #define RC_FILEVERSION 0,7,1406,2152 + #define RC_FILEVERSION_STRING "0, 7, 1406, 2152\0" + static const char FULLVERSION_STRING[] = "0.7.1406.2152"; //These values are to keep track of your versioning state, don't modify them. static const long BUILD_HISTORY = 62;