Fixed cont/pass mismatch.

This commit is contained in:
Eric Pouech 2002-05-25 22:04:13 +00:00 committed by Alexandre Julliard
parent 7bec5c16ab
commit 7fb449256d
1 changed files with 1 additions and 1 deletions

View File

@ -573,7 +573,7 @@ static void DEBUG_HandleException(EXCEPTION_RECORD *rec, BOOL first_chance, BOOL
if (DEBUG_ExitMode == EXIT_QUIT || DEBUG_ExitMode == EXIT_DETACH)
break;
if (DEBUG_ValidateRegisters()) {
if (DEBUG_ExitMode == EXIT_PASS || first_chance)
if (DEBUG_ExitMode == EXIT_CONTINUE || first_chance)
break;
DEBUG_Printf(DBG_CHN_MESG, "Cannot pass on last chance exception. You must use cont\n");
}