From 29cbfe7c1a1642e4920867c2cee5d95d4e297152 Mon Sep 17 00:00:00 2001 From: Jonas Kvinge Date: Thu, 25 Mar 2021 23:23:13 +0100 Subject: [PATCH] Change last played to qint64 --- src/core/song.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/core/song.cpp b/src/core/song.cpp index 2b7d1528..27d9ac24 100644 --- a/src/core/song.cpp +++ b/src/core/song.cpp @@ -204,7 +204,7 @@ struct Song::Private : public QSharedData { int playcount_; int skipcount_; - int lastplayed_; + qint64 lastplayed_; bool compilation_detected_; // From the collection scanner bool compilation_on_; // Set by the user