diff options
author | Eugene Sandulenko | 2016-08-04 22:26:04 +0200 |
---|---|---|
committer | Eugene Sandulenko | 2016-08-04 23:00:55 +0200 |
commit | 7ec2e7bc31bbc6a916586c5aa0eecae98559eee4 (patch) | |
tree | 1b620f288776a22b8fabc97bb582d36b668e9c64 /engines/director/lingo/lingo-funcs.cpp | |
parent | 12d1af66ef6d579141320017866ed7737b2b4c2e (diff) | |
download | scummvm-rg350-7ec2e7bc31bbc6a916586c5aa0eecae98559eee4.tar.gz scummvm-rg350-7ec2e7bc31bbc6a916586c5aa0eecae98559eee4.tar.bz2 scummvm-rg350-7ec2e7bc31bbc6a916586c5aa0eecae98559eee4.zip |
DIRECTOR: Lingo: Added 'alert' and 'beep' function stubs
Diffstat (limited to 'engines/director/lingo/lingo-funcs.cpp')
-rw-r--r-- | engines/director/lingo/lingo-funcs.cpp | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/engines/director/lingo/lingo-funcs.cpp b/engines/director/lingo/lingo-funcs.cpp index 08b3d455ca..4f48689e34 100644 --- a/engines/director/lingo/lingo-funcs.cpp +++ b/engines/director/lingo/lingo-funcs.cpp @@ -222,4 +222,12 @@ void Lingo::func_gotoprevious() { _vm->_currentScore->gotoprevious(); } +void Lingo::func_alert(Common::String &s) { + warning("STUB: func_alert(%s)", s.c_str()); +} + +void Lingo::func_beep(int num) { + warning("STUB: func_beep(%d)", num); +} + } |