winemine: Add WM_RBUTTONUP to cases of TestMines().

Signed-off-by: Andrey Semakin <and-semakin@ya.ru>
Signed-off-by: Alexandre Julliard <julliard@winehq.org>
oldstable
Andrey Semakin 2017-11-05 19:24:25 +05:00 committed by Alexandre Julliard
parent 4cfa13c533
commit dc3293612d
1 changed files with 3 additions and 3 deletions

View File

@ -743,9 +743,9 @@ static void TestMines( BOARD *p_board, POINT pt, int msg )
case WM_RBUTTONDOWN:
AddFlag( p_board, col, row );
break;
default:
WINE_TRACE("Unknown message type received in TestMines\n");
break;
case WM_RBUTTONUP:
return;
}
if( draw )