diff options
author | arnova <arnova@void.org> | 2015-08-03 07:22:03 +0200 |
---|---|---|
committer | arnova <arnova@void.org> | 2015-08-03 07:22:03 +0200 |
commit | 847ab7733f39e249e2ada49cd3248ae1fa90a1b3 (patch) | |
tree | 143aa346c36ed7bf5212c9783ac7e8cb9ba60ad5 | |
parent | 5737b0c299400a285f33dfb4db964aea688ab1f2 (diff) |
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 5e0ad2b5f3..3da19c4ca8 100644 --- a/xbmc/cores/dvdplayer/DVDPlayer.cpp +++ b/xbmc/cores/dvdplayer/DVDPlayer.cpp @@ -2986,7 +2986,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) @@ -3022,7 +3022,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) |