Change file recording behavior to create new file instead of appending.

This commit is contained in:
Jared Boone 2016-04-20 10:24:39 -07:00
parent f38fca168e
commit e4b86d149c

View File

@ -100,7 +100,7 @@ private:
}
msg_t run() {
if( !file.open_for_append(file_path) ) {
if( !file.open_for_writing(file_path) ) {
return false;
}