1
0

組み込み関数呼び出しの修正,PRINTの解析の修正,PRINTにmutex使うようにした

This commit is contained in:
otya128
2015-07-12 13:12:07 +09:00
parent 8c140956cb
commit 60654d16e4
3 changed files with 18 additions and 4 deletions

View File

@@ -885,6 +885,6 @@ class CallBuiltinFunction : Code
result = vm.stack[vm.stacki - argcount..vm.stacki - argcount + outcount];//雑;
}
func.func(vm.petitcomputer, arg, result);
vm.stacki -= func.argments.length;
vm.stacki -= func.argments.length - outcount;
}
}