| 149 | } |
| 150 | |
| 151 | std::string bytesToMB(u64 done, u64 total) |
| 152 | { |
| 153 | char buf[48]; |
| 154 | snprintf(buf, sizeof(buf), "%.1f / %.1f MB", (double)done / (1024.0 * 1024.0), (double)total / (1024.0 * 1024.0)); |
| 155 | return std::string(buf); |
| 156 | } |
| 157 | } |
no test coverage detected