| 1442 | std::fill(field, field + 4, 0); |
| 1443 | } |
| 1444 | std::string Pcsx2Config::DEV9Options::SaveIPHelper(u8* field) |
| 1445 | { |
| 1446 | return StringUtil::StdStringFromFormat("%u.%u.%u.%u", field[0], field[1], field[2], field[3]); |
| 1447 | } |
| 1448 | |
| 1449 | bool Pcsx2Config::DEV9Options::HostEntry::operator==(const HostEntry& right) const |
| 1450 | { |
nothing calls this directly
no test coverage detected