| 400 | } |
| 401 | |
| 402 | void netloaderDrawBot(void) |
| 403 | { |
| 404 | char buf[256]; |
| 405 | const char* text = NULL; |
| 406 | if (datafd < 0) |
| 407 | { |
| 408 | u32 ip = gethostid(); |
| 409 | snprintf(buf, sizeof(buf), textGetString(StrId_NetLoaderActive), ip&0xFF, (ip>>8)&0xFF, (ip>>16)&0xFF, (ip>>24)&0xFF, NETWORK_PORT); |
| 410 | text = buf; |
| 411 | } |
| 412 | |
| 413 | networkDrawBot(StrId_NetLoader, text, (datafd >= 0 && filelen), filelen, filetotal); |
| 414 | } |
nothing calls this directly
no test coverage detected