diff --git a/src/sfizz/FilePool.h b/src/sfizz/FilePool.h index f76e2783..6adbe229 100644 --- a/src/sfizz/FilePool.h +++ b/src/sfizz/FilePool.h @@ -90,6 +90,7 @@ struct FileData information = std::move(other.information); preloadedData = std::move(other.preloadedData); fileData = std::move(other.fileData); + preloadCallCount = other.preloadCallCount; availableFrames = other.availableFrames.load(); lastViewerLeftAt = other.lastViewerLeftAt; status = other.status.load(); @@ -100,6 +101,7 @@ struct FileData information = std::move(other.information); preloadedData = std::move(other.preloadedData); fileData = std::move(other.fileData); + preloadCallCount = other.preloadCallCount; availableFrames = other.availableFrames.load(); lastViewerLeftAt = other.lastViewerLeftAt; status = other.status.load();