mirror of
https://github.com/PurpleI2P/i2pd.git
synced 2025-02-02 11:04:17 +00:00
tbytes in WinApp
This commit is contained in:
parent
5fb426b336
commit
48d9a03aa8
@ -132,7 +132,11 @@ namespace win32
|
||||
auto mbytes = transfer & 0x03ff;
|
||||
transfer >>= 10;
|
||||
auto gbytes = transfer & 0x03ff;
|
||||
transfer >>= 10;
|
||||
auto tbytes = transfer & 0x03ff;
|
||||
|
||||
if (tbytes)
|
||||
s << tbytes << " TB, ";
|
||||
if (gbytes)
|
||||
s << gbytes << " GB, ";
|
||||
if (mbytes)
|
||||
|
Loading…
x
Reference in New Issue
Block a user