mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[NTVDM]
Fix logic. Caught by Victor Martinez (private communication). svn path=/trunk/; revision=63207
This commit is contained in:
parent
7090d796f6
commit
60f07d8133
1 changed files with 1 additions and 1 deletions
|
@ -313,7 +313,7 @@ call_ica_hw_interrupt(INT ms,
|
|||
BYTE InterruptNumber = line;
|
||||
|
||||
/* Check for PIC validity */
|
||||
if (ms != ICA_MASTER || ms != ICA_SLAVE) return;
|
||||
if (ms != ICA_MASTER && ms != ICA_SLAVE) return;
|
||||
|
||||
/*
|
||||
* Adjust the interrupt request number according to the parameters,
|
||||
|
|
Loading…
Reference in a new issue