1
0
This commit is contained in:
otya128
2016-12-29 21:22:06 +09:00
parent dd81d45ef9
commit 8af9c64396
5 changed files with 69 additions and 7 deletions

View File

@@ -2465,10 +2465,11 @@ class BuiltinFunction
}
static void ACLS(PetitComputer p)
{
p.console.cls;
SPCLR(p, DefaultValue!(int, false)(true));
BGCLR(p, DefaultValue!(int, false)(true));
GCLS(p);
p.acls(true, true, true);
}
static void ACLS(PetitComputer p, int gr, int sp, int fn)
{
p.acls(cast(bool)gr, cast(bool)sp, cast(bool)fn);
}
static int CHKCALL(PetitComputer p, wstring func)
{