moved inits into constructor

This commit is contained in:
itsmattkc
2019-02-16 22:24:33 -08:00
parent f14b0cef7d
commit 4b5cd8bd26
2 changed files with 11 additions and 12 deletions
+6 -7
View File
@@ -24,13 +24,12 @@
#include "debug.h"
Sequence::Sequence() :
playhead(0),
using_workarea(false),
workarea_in(0),
workarea_out(0),
wrapper_sequence(false)
{
Sequence::Sequence() {
playhead = 0;
using_workarea = false;
workarea_in = 0;
workarea_out = 0;
wrapper_sequence = false;
}
Sequence::~Sequence() {}