aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMartijn Kaijser <martijn@xbmc.org>2015-08-08 08:55:30 +0200
committerMartijn Kaijser <martijn@xbmc.org>2015-08-08 08:55:30 +0200
commitf58d2c1568591e3c283c20d3f9297fbd9cdc5d3e (patch)
tree1c9d429b61cc9185281e92fc78342d26c17da8fe
parent8d1313477b526ea7b9048276489402a35b99aa89 (diff)
parent412a73bc5b488558b54fe9c6f08bdcc9b7ffcd16 (diff)
Merge pull request #7753 from arnova/cache_is_forward_isengard
changed: Rename cache: to forward: as that's what it really is
-rw-r--r--xbmc/cores/dvdplayer/DVDPlayer.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/xbmc/cores/dvdplayer/DVDPlayer.cpp b/xbmc/cores/dvdplayer/DVDPlayer.cpp
index 9f45a220b5..7c84557499 100644
--- a/xbmc/cores/dvdplayer/DVDPlayer.cpp
+++ b/xbmc/cores/dvdplayer/DVDPlayer.cpp
@@ -2984,7 +2984,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)
@@ -3020,7 +3020,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)