mirror of
https://github.com/reactos/reactos.git
synced 2025-02-24 17:34:57 +00:00
Add missing breaks
Spotted by Maciej Bialas (bjauy at o2.pl) svn path=/trunk/; revision=38589
This commit is contained in:
parent
072a17a70e
commit
ddd86fea53
2 changed files with 5 additions and 0 deletions
|
@ -222,12 +222,15 @@ SermouseDetectLegacyDevice(
|
|||
case '3':
|
||||
INFO_(SERMOUSE, "Microsoft Mouse with 3-buttons detected\n");
|
||||
MouseType = mtLogitech;
|
||||
break;
|
||||
case 'Z':
|
||||
INFO_(SERMOUSE, "Microsoft Wheel Mouse detected\n");
|
||||
MouseType = mtWheelZ;
|
||||
break;
|
||||
default:
|
||||
INFO_(SERMOUSE, "Microsoft Mouse with 2-buttons detected\n");
|
||||
MouseType = mtMicrosoft;
|
||||
break;
|
||||
}
|
||||
goto ByeBye;
|
||||
}
|
||||
|
|
|
@ -572,6 +572,7 @@ SerenumDetectLegacyDevice(
|
|||
RtlInitUnicodeString(&DeviceDescription, L"Microsoft Mouse with 3-buttons");
|
||||
SerenumInitMultiSzString(&HardwareIds, "*PNP0F08", NULL);
|
||||
SerenumInitMultiSzString(&CompatibleIds, "SERIAL_MOUSE", NULL);
|
||||
break;
|
||||
default:
|
||||
/* Hardware id: *PNP0F01
|
||||
* Compatible id: SERIAL_MOUSE
|
||||
|
@ -579,6 +580,7 @@ SerenumDetectLegacyDevice(
|
|||
RtlInitUnicodeString(&DeviceDescription, L"Microsoft Mouse with 2-buttons or Microsoft Wheel Mouse");
|
||||
SerenumInitMultiSzString(&HardwareIds, "*PNP0F01", NULL);
|
||||
SerenumInitMultiSzString(&CompatibleIds, "SERIAL_MOUSE", NULL);
|
||||
break;
|
||||
}
|
||||
Status = ReportDetectedDevice(DeviceObject,
|
||||
&DeviceDescription, &DeviceId, &InstanceId, &HardwareIds, &CompatibleIds);
|
||||
|
|
Loading…
Reference in a new issue