mirror of
https://github.com/danbulant/Cosmos
synced 2026-06-12 19:21:40 +00:00
commit
1510cee0d1
1 changed files with 3 additions and 1 deletions
|
|
@ -176,8 +176,10 @@ namespace Cosmos.HAL
|
|||
* |--------|---------------------------|
|
||||
* | 0x04 | 5-button mouse |
|
||||
* |--------|---------------------------|
|
||||
* | 0x50 | Laptop Touchpad |
|
||||
* |--------|---------------------------|
|
||||
*/
|
||||
if (xFirstByte == 0x00 || xFirstByte == 0x03 || xFirstByte == 0x04)
|
||||
if (xFirstByte == 0x00 || xFirstByte == 0x03 || xFirstByte == 0x04 || xFirstByte == 0x50)
|
||||
{
|
||||
var xDevice = new PS2Mouse(aPort, xFirstByte);
|
||||
xDevice.Initialize();
|
||||
|
|
|
|||
Loading…
Reference in a new issue