flags should start out all checked

This commit is contained in:
Nikolaus Gullotta 2019-04-11 09:15:06 -05:00 committed by Nikolaus Gullotta
parent 574de9fa55
commit 268d55a6ed
No known key found for this signature in database
GPG key ID: 565F60578092AA31

View file

@ -54,7 +54,7 @@ MixerSnapshot::MixerSnapshot(Session* s)
, label("snapshot")
, timestamp(time(0))
, last_modified_with(string_compose("%1 %2", PROGRAM_NAME, revision))
, _flags(RecallFlags(0))
, _flags(RecallFlags(31))
{
if(s) {
_session = s;
@ -67,7 +67,7 @@ MixerSnapshot::MixerSnapshot(Session* s, string file_path)
, label("snapshot")
, timestamp(time(0))
, last_modified_with(string_compose("%1 %2", PROGRAM_NAME, revision))
, _flags(RecallFlags(0))
, _flags(RecallFlags(31))
{
if(s) {
_session = s;