mirror of
https://github.com/hrydgard/ppsspp.git
synced 2026-09-08 13:43:27 +02:00
ImDebugger: Add Np and Sockets debugger windows, on a new Network menu
This commit is contained in:
@@ -87,3 +87,13 @@ void SocketManager::CloseAll() {
|
||||
sock.sock = 0;
|
||||
}
|
||||
}
|
||||
|
||||
const char *SocketStateToString(SocketState state) {
|
||||
switch (state) {
|
||||
case SocketState::Unused: return "unused";
|
||||
case SocketState::UsedNetInet: return "netInet";
|
||||
case SocketState::UsedProAdhoc: return "proAdhoc";
|
||||
default:
|
||||
return "N/A";
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user