NowPlaying: Fix C4819 warning

This commit is contained in:
Birunthan Mohanathas 2013-05-09 16:18:15 +03:00
parent 29ae70a041
commit 17500a2dbd

View File

@ -91,7 +91,7 @@ void CPlayerSpotify::UpdateData()
{
std::wstring title = &buffer[10]; // Skip "Spotify - "
std::wstring::size_type pos = title.find(L" ");
std::wstring::size_type pos = title.find(L" \u2013 ");
if (pos != std::wstring::npos)
{
std::wstring artist(title, 0, pos);