From 5da1668fab7b455408f562ae73652ade13ad6b82 Mon Sep 17 00:00:00 2001 From: otya128 Date: Mon, 10 Jul 2017 17:39:45 +0900 Subject: [PATCH] Add BGMSET, BGMSETD stubs --- SMILEBASIC/builtinfunctions.d | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/SMILEBASIC/builtinfunctions.d b/SMILEBASIC/builtinfunctions.d index 2fdcc33..6339b68 100644 --- a/SMILEBASIC/builtinfunctions.d +++ b/SMILEBASIC/builtinfunctions.d @@ -2273,6 +2273,14 @@ class BuiltinFunction writeln("NOTIMPL:BGMCHK"); 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) { return cast(int)(p.console.console[p.displaynum][y][x].character);