1
0

Fix XON/XOFF

This commit is contained in:
otya128
2016-12-09 18:45:34 +09:00
parent 463556954a
commit a04536335b
3 changed files with 49 additions and 13 deletions

View File

@@ -2023,6 +2023,9 @@ class SetX : Code
}
override void execute(VM vm)
{
vm.petitcomputer.setX(func, value);
if (value)
vm.petitcomputer.xon(func);
else
vm.petitcomputer.xoff(func);
}
}