[INPUT] Fix IsRebootNeeded condition

If there is any IME HKL, reboot is needed.
Follow-up to #4666 (596f04b). CORE-11700, CORE-18364
This commit is contained in:
Katayama Hirofumi MZ 2022-09-17 07:12:05 +09:00
parent 75116d6b87
commit fd46398b63

View file

@ -360,12 +360,7 @@ static BOOL IsRebootNeeded(VOID)
{
if (IS_IME_HKL(pNode->hkl)) /* IME? */
{
if (pNode->wFlags & (INPUT_LIST_NODE_FLAG_ADDED |
INPUT_LIST_NODE_FLAG_EDITED |
INPUT_LIST_NODE_FLAG_DEFAULT))
{
return TRUE;
}
return TRUE;
}
}