diff options
author | uruk | 2013-06-28 17:43:31 +0200 |
---|---|---|
committer | uruk | 2013-06-28 17:43:31 +0200 |
commit | 612582f016f84efb9835d4ff31e0d2d51ba581ca (patch) | |
tree | 918ccc45a9a737db1f74e4bd3339952680ef4fbd /engines | |
parent | 140e20522711d414bf09898fe533c704c41c4442 (diff) | |
download | scummvm-rg350-612582f016f84efb9835d4ff31e0d2d51ba581ca.tar.gz scummvm-rg350-612582f016f84efb9835d4ff31e0d2d51ba581ca.tar.bz2 scummvm-rg350-612582f016f84efb9835d4ff31e0d2d51ba581ca.zip |
AVALANCHE: Repair Pingo.
Diffstat (limited to 'engines')
-rw-r--r-- | engines/avalanche/pingo2.cpp | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/engines/avalanche/pingo2.cpp b/engines/avalanche/pingo2.cpp index fa2e96ff02..b2f8e83886 100644 --- a/engines/avalanche/pingo2.cpp +++ b/engines/avalanche/pingo2.cpp @@ -36,12 +36,14 @@ #include "avalanche/trip6.h" //#include "avalanche/scrolls2.h" - - #include "common/textconsole.h" namespace Avalanche { +void Pingo::setParent(AvalancheEngine *vm) { + _vm = vm; +} + void Pingo::dplot(int16 x, int16 y, Common::String z) { warning("STUB: Pingo::dplot()"); } |