1
0

Implement BGSHOW/HIDE

This commit is contained in:
otya128
2016-12-08 22:37:44 +09:00
parent 609bc0bcd5
commit b64120b480
2 changed files with 12 additions and 0 deletions

View File

@@ -1607,6 +1607,14 @@ class BuiltinFunction
{
return p.bgpage;
}
static void BGSHOW(PetitComputer p, int layer)
{
p.getBG(layer).show = true;
}
static void BGHIDE(PetitComputer p, int layer)
{
p.getBG(layer).show = false;
}
static void EFCON()
{
}