diff options
author | Kolja Lampe <razzeee@gmail.com> | 2015-12-28 22:57:01 +0100 |
---|---|---|
committer | Kolja Lampe <razzeee@gmail.com> | 2015-12-28 22:57:01 +0100 |
commit | d8ec0d51a96ccda3b7c94f51aaf65b4201c20d96 (patch) | |
tree | 784ef8a528f8ce1cc7784b55b99b5fccc5cb81c1 | |
parent | 214350feec4794732826a70033f240e5df46faaa (diff) |
Fix copy and paste error
-rw-r--r-- | xbmc/music/tags/MusicInfoTag.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/music/tags/MusicInfoTag.cpp b/xbmc/music/tags/MusicInfoTag.cpp index ab016f31f2..a71521669d 100644 --- a/xbmc/music/tags/MusicInfoTag.cpp +++ b/xbmc/music/tags/MusicInfoTag.cpp @@ -868,7 +868,7 @@ void CMusicInfoTag::Archive(CArchive& ar) ar >> m_dateAdded; ar >> m_strComment; ar >> m_strMood; - ar << m_Rating; + ar >> m_Rating; ar >> m_Userrating; ar >> m_Votes; ar >> m_iTimesPlayed; |