From 272dcb8756d507125dda99ac78318e341f7c7a34 Mon Sep 17 00:00:00 2001 From: Ryan Houdek Date: Wed, 21 Aug 2013 03:22:01 +0000 Subject: [PATCH] In Windows, if BBA can't connect to any TUNTAP device then throw a panicalert, not just an error log. --- Source/Core/Core/Src/HW/BBA-TAP/TAP_Win32.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Source/Core/Core/Src/HW/BBA-TAP/TAP_Win32.cpp b/Source/Core/Core/Src/HW/BBA-TAP/TAP_Win32.cpp index e5d2b7be64..a444ca63cb 100644 --- a/Source/Core/Core/Src/HW/BBA-TAP/TAP_Win32.cpp +++ b/Source/Core/Core/Src/HW/BBA-TAP/TAP_Win32.cpp @@ -193,7 +193,7 @@ bool CEXIETHERNET::Activate() } if (mHAdapter == INVALID_HANDLE_VALUE) { - ERROR_LOG(SP1, "Failed to open any TAP"); + PanicAlert("Failed to open any TAP"); return false; }