From 528c1173d7b9d15d9b7e36f25a876c8952357f26 Mon Sep 17 00:00:00 2001 From: Alyssa Milburn Date: Sun, 20 Nov 2011 20:24:51 +0100 Subject: MOHAWK: Implement kLBOpLoad, kLBOpUnload. --- engines/mohawk/livingbooks.cpp | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'engines/mohawk') diff --git a/engines/mohawk/livingbooks.cpp b/engines/mohawk/livingbooks.cpp index 078227d0d3..8b01489497 100644 --- a/engines/mohawk/livingbooks.cpp +++ b/engines/mohawk/livingbooks.cpp @@ -2844,9 +2844,7 @@ int LBItem::runScriptEntry(LBScriptEntry *entry) { break; case kLBOpLoad: - // FIXME - warning("ignoring kLBOpLoad (event 0x%04x, param 0x%04x, target '%s')", - entry->event, entry->param, target->_desc.c_str()); + target->load(); break; case kLBOpPreload: @@ -2856,9 +2854,7 @@ int LBItem::runScriptEntry(LBScriptEntry *entry) { break; case kLBOpUnload: - // FIXME - warning("ignoring kLBOpUnload (event 0x%04x, param 0x%04x, target '%s')", - entry->event, entry->param, target->_desc.c_str()); + target->unload(); break; case kLBOpSeekToPrev: -- cgit v1.2.3