[PATCH] dinput: Only complain for unsupported effect envelope if it really is useful

Bruno Jesus 00cpxxx at gmail.com
Tue Sep 6 13:32:52 CDT 2016


Signed-off-by: Bruno Jesus <00cpxxx at gmail.com>
---
 dlls/dinput/effect_linuxinput.c | 3 ++-
 1 file changed, 2 insertions(+), 1 deletion(-)

diff --git a/dlls/dinput/effect_linuxinput.c b/dlls/dinput/effect_linuxinput.c
index 1015105..fe3334a 100644
--- a/dlls/dinput/effect_linuxinput.c
+++ b/dlls/dinput/effect_linuxinput.c
@@ -585,7 +585,8 @@ static HRESULT WINAPI LinuxInputEffectImpl_SetParameters(
             env->fade_length = 0;
             env->fade_level = 0;
         }
-        else
+        else if(peff->lpEnvelope->dwAttackTime || peff->lpEnvelope->dwAttackLevel ||
+                peff->lpEnvelope->dwFadeTime || peff->lpEnvelope->dwFadeLevel)
             WARN("Ignoring dinput envelope not supported in the linux effect\n");
     }
 
-- 
2.9.3




More information about the wine-patches mailing list