diff options
-rw-r--r-- | xbmc/cores/dvdplayer/DVDPlayer.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/cores/dvdplayer/DVDPlayer.cpp b/xbmc/cores/dvdplayer/DVDPlayer.cpp index 1d8e4f615c..acf1a523dd 100644 --- a/xbmc/cores/dvdplayer/DVDPlayer.cpp +++ b/xbmc/cores/dvdplayer/DVDPlayer.cpp @@ -3008,7 +3008,7 @@ void CDVDPlayer::GetGeneralInfo(std::string& strGeneralInfo) CSingleLock lock(m_StateSection); if(m_StateInput.cache_bytes >= 0) { - strBuf += StringUtils::Format(" cache:%s %2.0f%%" + strBuf += StringUtils::Format(" forward:%s %2.0f%%" , StringUtils::SizeToString(m_StateInput.cache_bytes).c_str() , m_StateInput.cache_level * 100); if(m_playSpeed == 0 || m_caching == CACHESTATE_FULL) @@ -3044,7 +3044,7 @@ void CDVDPlayer::GetGeneralInfo(std::string& strGeneralInfo) CSingleLock lock(m_StateSection); if(m_StateInput.cache_bytes >= 0) { - strBuf += StringUtils::Format(" cache:%s %2.0f%%" + strBuf += StringUtils::Format(" forward:%s %2.0f%%" , StringUtils::SizeToString(m_StateInput.cache_bytes).c_str() , m_StateInput.cache_level * 100); if(m_playSpeed == 0 || m_caching == CACHESTATE_FULL) |