13
0

Fix incorrect estimate of future revision.

This commit is contained in:
nick_m 2016-09-07 00:32:02 +10:00
parent fb9f4636e7
commit ab21b241f7

View File

@ -1009,7 +1009,7 @@ Session::load_state (string snapshot_name)
const double modified_with_version = atof (modified_with.substr ( modified_with.find(" ", 0) + 1, string::npos).c_str());
const int modified_with_revision = atoi (modified_with.substr (modified_with.find("-", 0) + 1, string::npos).c_str());
if (modified_with_version <= 5.3 && !(modified_with_version == 5.3 && modified_with_revision >= 42)) {
if (modified_with_version <= 5.3 && !(modified_with_version == 5.3 && modified_with_revision > 42)) {
_midi_regions_use_bbt_beats = true;
}
}