Skip to content

Commit ff56fd1

Browse files
committed
过滤未变化的帧&网速计算
1 parent dd76c35 commit ff56fd1

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

dsclient/src/client.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -317,7 +317,7 @@ fn draw(host: String, pwd: String) {
317317
last = cur;
318318
_length_all = _length_sum;
319319
if let Ok(mut a) = _tool_str.write() {
320-
*a = format!("FPS:{:2} | Rate:{:>6}kb/s", fps, _length_all / 1024);
320+
*a = format!("FPS:{:2} | Rate:{:>6}KB/s", fps, _length_all / 1024);
321321
}
322322
fps = fpscount;
323323
fpscount = 0;

0 commit comments

Comments
 (0)