1
0

Add BGMSET, BGMSETD stubs

This commit is contained in:
otya128
2017-07-10 17:39:45 +09:00
parent 7d389eba5d
commit 5da1668fab

View File

@@ -2273,6 +2273,14 @@ class BuiltinFunction
writeln("NOTIMPL:BGMCHK"); writeln("NOTIMPL:BGMCHK");
return false; return false;
} }
static void BGMSETD(int no, wstring label)
{
writeln("NOTIMPL:BGMSETD %d,%s", no, label);
}
static void BGMSET(int no, wstring mml)
{
writeln("NOTIMPL:BGMSET %d,%s", no, mml);
}
static int CHKCHR(PetitComputer p, int x, int y) static int CHKCHR(PetitComputer p, int x, int y)
{ {
return cast(int)(p.console.console[p.displaynum][y][x].character); return cast(int)(p.console.console[p.displaynum][y][x].character);