aboutsummaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/engine/userexperience.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/engine/userexperience.cpp b/src/engine/userexperience.cpp
index dd59a431..6b0e3bf5 100644
--- a/src/engine/userexperience.cpp
+++ b/src/engine/userexperience.cpp
@@ -1973,12 +1973,13 @@ static int FilterResult(
1973 __in int nResult 1973 __in int nResult
1974 ) 1974 )
1975{ 1975{
1976 DWORD dwFilteredAllowedResults = dwAllowedResults & MB_TYPEMASK;
1976 if (IDNOACTION == nResult || IDERROR == nResult) // do nothing and errors pass through. 1977 if (IDNOACTION == nResult || IDERROR == nResult) // do nothing and errors pass through.
1977 { 1978 {
1978 } 1979 }
1979 else 1980 else
1980 { 1981 {
1981 switch (dwAllowedResults) 1982 switch (dwFilteredAllowedResults)
1982 { 1983 {
1983 case MB_OK: 1984 case MB_OK:
1984 nResult = IDOK; 1985 nResult = IDOK;