winemenubuilder: Allow multiple options.

This commit is contained in:
Damjan Jovanovic 2009-06-25 21:01:59 +02:00 committed by Alexandre Julliard
parent 2478b86ef6
commit 420d642918

View file

@ -2714,12 +2714,12 @@ int PASCAL WinMain (HINSTANCE hInstance, HINSTANCE prev, LPSTR cmdline, int show
if( !lstrcmpA( token, "-a" ) ) if( !lstrcmpA( token, "-a" ) )
{ {
RefreshFileTypeAssociations(); RefreshFileTypeAssociations();
break; continue;
} }
if( !lstrcmpA( token, "-r" ) ) if( !lstrcmpA( token, "-r" ) )
{ {
cleanup_menus(); cleanup_menus();
break; continue;
} }
if( !lstrcmpA( token, "-w" ) ) if( !lstrcmpA( token, "-w" ) )
bWait = TRUE; bWait = TRUE;