Skip to content

Commit bd17ac8

Browse files
committed
[F] mml 2p id
1 parent ae5f092 commit bd17ac8

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

AquaMai.Mods/GameSystem/MaimollerIO/Libs/MaimollerDevice.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,8 @@ public void Open()
4141

4242
// To align with the driver from manufacturer, 1P = 0 and 2P = 2.
4343
// But in IDA the devices array is {p1, p2, p1} and devices[0] == devices[2], so why?
44-
_dev = adx_open(player == 0 ? 0 : 2);
44+
// 经过测试,2P是1
45+
_dev = adx_open(player == 0 ? 0 : 1);
4546
}
4647

4748
public void Update()

0 commit comments

Comments
 (0)