mirror of
https://github.com/libretro/scummvm.git
synced 2025-02-11 13:45:25 +00:00
DIRECTOR: Lingo: Added updateStage stub
This commit is contained in:
parent
06dd3651c7
commit
3882a54ade
@ -49,6 +49,7 @@ static struct BuiltinProto {
|
||||
{ "string", Lingo::b_string, 1},
|
||||
// Misc
|
||||
{ "dontpassevent", Lingo::b_dontpassevent, -1 },
|
||||
{ "updatestage", Lingo::b_updatestage, -1 },
|
||||
{ "ilk", Lingo::b_ilk, 1 },
|
||||
// point
|
||||
{ "point", Lingo::b_point, 2},
|
||||
@ -219,6 +220,10 @@ void Lingo::b_dontpassevent() {
|
||||
warning("STUB: b_dontpassevent");
|
||||
}
|
||||
|
||||
void Lingo::b_updatestage() {
|
||||
warning("STUB: b_updatestage");
|
||||
}
|
||||
|
||||
void Lingo::b_ilk() {
|
||||
Datum d = g_lingo->pop();
|
||||
d.u.i = d.type;
|
||||
|
@ -260,6 +260,7 @@ public:
|
||||
static void b_tan();
|
||||
|
||||
static void b_dontpassevent();
|
||||
static void b_updatestage();
|
||||
static void b_ilk();
|
||||
|
||||
static void b_point();
|
||||
|
Loading…
x
Reference in New Issue
Block a user