diff --git a/stepmania/src/ezsockets.cpp b/stepmania/src/ezsockets.cpp index b0a24b507e..6c07f6fd0e 100644 --- a/stepmania/src/ezsockets.cpp +++ b/stepmania/src/ezsockets.cpp @@ -60,7 +60,15 @@ bool EzSockets::create(int Protocol) { case IPPROTO_UDP: return create(IPPROTO_UDP, SOCK_DGRAM); default: + //XBOX does not support the raw socket. + //So, since there's no need, we aren't + //going to allow it on XBOX +#if defined(_XBOX) + return false; +#else return create(Protocol, SOCK_RAW); +#endif + } }