From 4c524f5e0a62fe34c3c3bb9978ee8cd3c0c3ccbc Mon Sep 17 00:00:00 2001 From: Denis Kasak Date: Sat, 27 Jun 2009 15:19:03 +0000 Subject: Renamed Script::gpldisasm() to Script::run(). svn-id: r41920 --- engines/draci/script.cpp | 2 +- engines/draci/script.h | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) (limited to 'engines') diff --git a/engines/draci/script.cpp b/engines/draci/script.cpp index 05018b590d..c04100af78 100644 --- a/engines/draci/script.cpp +++ b/engines/draci/script.cpp @@ -275,7 +275,7 @@ GPL2Command *Script::findCommand(byte num, byte subnum) { * value comes from. */ -int Script::gpldisasm(byte *gplcode, uint16 len) { +int Script::run(byte *gplcode, uint16 len) { Common::MemoryReadStream reader(gplcode, len); while (!reader.eos()) { diff --git a/engines/draci/script.h b/engines/draci/script.h index 11aded6330..4ad305c209 100644 --- a/engines/draci/script.h +++ b/engines/draci/script.h @@ -53,7 +53,7 @@ struct GPL2Command { class Script { public: - int gpldisasm(byte *gplcode, uint16 len); + int run(byte *gplcode, uint16 len); private: GPL2Command *findCommand(byte num, byte subnum); -- cgit v1.2.3