diff options
author | arnova <arnova77@gmail.com> | 2015-08-07 07:06:33 +0200 |
---|---|---|
committer | arnova <arnova77@gmail.com> | 2015-08-07 07:06:33 +0200 |
commit | 7909aa4e50d56f17886d3b9e4f4019c9490285ed (patch) | |
tree | 49122be6146eff82f73da5e8e43172ad9b03f396 | |
parent | 6c0a7b866a11223b646abf277c67991b829a0220 (diff) | |
parent | 847ab7733f39e249e2ada49cd3248ae1fa90a1b3 (diff) |
Merge pull request #7704 from arnova/cache_is_forward
changed: Rename cache: to forward: as that's what it really is
-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) |