In Windows, if BBA can't connect to any TUNTAP device then throw a panicalert, not just an error log.

This commit is contained in:
Ryan Houdek 2013-08-21 03:22:01 +00:00
parent 53df78d372
commit 272dcb8756
1 changed files with 1 additions and 1 deletions

View File

@ -193,7 +193,7 @@ bool CEXIETHERNET::Activate()
} }
if (mHAdapter == INVALID_HANDLE_VALUE) if (mHAdapter == INVALID_HANDLE_VALUE)
{ {
ERROR_LOG(SP1, "Failed to open any TAP"); PanicAlert("Failed to open any TAP");
return false; return false;
} }