append investigation

This commit is contained in:
Hiro Protagonist 2017-03-23 19:25:02 +13:00
parent 84c9220c63
commit d123887d0b

View file

@ -76,7 +76,7 @@ void Recorder::newRecording( QString r_name ) {
bool Recorder::restoreRecording() {
bool ok;
qDebug() << "reading statfile";
frame_n = stat_file.readLine().toInt( &ok, 10 );
frame_n = QString( stat_file.readLine() ).toUInt( &ok, 10 );
qDebug() << "red statfile";
return ok;
}