From 05b0b2097307c3b4dd7ba0579f34e8881e77bcc7 Mon Sep 17 00:00:00 2001 From: Mark Watkins Date: Thu, 5 Jan 2012 15:04:08 +1000 Subject: [PATCH] More silly event file verison muckup fixed.. Should be good now --- SleepLib/session.cpp | 17 ++++++++++------- 1 file changed, 10 insertions(+), 7 deletions(-) diff --git a/SleepLib/session.cpp b/SleepLib/session.cpp index 234ebce3..c955137d 100644 --- a/SleepLib/session.cpp +++ b/SleepLib/session.cpp @@ -25,7 +25,7 @@ const quint16 filetype_data=1; // This is the uber important database version for SleepyHeads internal storage // Increment this after stuffing with Session's save & load code. const quint16 summary_version=11; -const quint16 events_version=9; +const quint16 events_version=10; Session::Session(Machine * m,SessionID session) { @@ -497,7 +497,7 @@ bool Session::LoadEvents(QString filename) return false; } - if (version<9) { + if (version<10) { file.seek(32); } else { header >> compmethod; // Compression Method (quint16) @@ -508,13 +508,16 @@ bool Session::LoadEvents(QString filename) QByteArray databytes,temp=file.readAll(); file.close(); - if (compmethod>0) { - databytes=qUncompress(temp); - } else { - databytes=temp; + + if (version>=10) { + if (compmethod>0) { + databytes=qUncompress(temp); + } else { + databytes=temp; + } } - if (version>=9) { + if (version>=10) { if (databytes.size()!=datasize) { qDebug() << "File" << filename << "has returned wrong datasize"; return false;