1
0
mirror of synced 2024-09-24 03:18:22 +02:00

Fix typing mistake not caught on previous AP2 check-in.

This commit is contained in:
Jennifer Taylor 2021-04-08 01:05:48 +00:00
parent a3f247f422
commit 72f81e4f58

View File

@ -3038,7 +3038,7 @@ class SWF:
constraint = struct.unpack(">b", datachunk[(offset_ptr + 1):(offset_ptr + 2)])[0]
offset_ptr += 2
vprint(f"{prefix} {lineno}: {action_name} Constrain Mouse: {'yes' if constraint > 0 else ('no' if constrained == 0 else 'check stack')}")
vprint(f"{prefix} {lineno}: {action_name} Constrain Mouse: {'yes' if constraint > 0 else ('no' if constraint == 0 else 'check stack')}")
elif opcode == AP2Action.ADD_NUM_REGISTER:
register_no, amount_to_add = struct.unpack(">BB", datachunk[(offset_ptr + 1):(offset_ptr + 3)])
offset_ptr += 3