1
0
Fork 0
forked from len0rd/rockbox

Show the watermark in the "Show buffering thread" screen (in bytes).

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@20096 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Thomas Martitz 2009-02-23 22:55:48 +00:00
parent 25b4334654
commit fcbfef8175
3 changed files with 5 additions and 1 deletions

View file

@ -1489,4 +1489,5 @@ void buffering_get_debugdata(struct buffering_debug *dbgdata)
dbgdata->wasted_space = data_counters.wasted;
dbgdata->buffered_data = data_counters.buffered;
dbgdata->useful_data = data_counters.useful;
dbgdata->watermark = conf_watermark;
}