From 7c3cec0451587395a895665d8aa541504656d436 Mon Sep 17 00:00:00 2001 From: Cameron Gutman Date: Sun, 17 Mar 2019 00:23:32 -0700 Subject: [PATCH] Add EZFRD32.dll and EZFRD64.dll to blacklist based on crash reports --- AntiHooking/antihookingprotection.cpp | 6 +++++- 1 file changed, 5 insertions(+), 1 deletion(-) diff --git a/AntiHooking/antihookingprotection.cpp b/AntiHooking/antihookingprotection.cpp index 234d9560..d81788e9 100644 --- a/AntiHooking/antihookingprotection.cpp +++ b/AntiHooking/antihookingprotection.cpp @@ -134,7 +134,11 @@ private: // This DLL shipped with ASUS Sonic Radar 3 improperly handles // D3D9 exclusive fullscreen in a way that causes CreateDeviceEx() // to deadlock. https://github.com/moonlight-stream/moonlight-qt/issues/102 - L"NahimicOSD.dll" + L"NahimicOSD.dll", + // This DLL has been seen in several crash reports. Some Googling + // suggests it's highly unstable and causes issues in many games. + L"EZFRD32.dll", + L"EZFRD64.dll", }; };