aboutsummaryrefslogtreecommitdiff
path: root/engines
diff options
context:
space:
mode:
authorDenis Kasak2009-06-27 15:19:03 +0000
committerDenis Kasak2009-06-27 15:19:03 +0000
commit4c524f5e0a62fe34c3c3bb9978ee8cd3c0c3ccbc (patch)
tree70a9e28481c973252fda3136b02ce17e44cc8d26 /engines
parent97dde5e1eddcff4e038843a880343429b26a1fe9 (diff)
downloadscummvm-rg350-4c524f5e0a62fe34c3c3bb9978ee8cd3c0c3ccbc.tar.gz
scummvm-rg350-4c524f5e0a62fe34c3c3bb9978ee8cd3c0c3ccbc.tar.bz2
scummvm-rg350-4c524f5e0a62fe34c3c3bb9978ee8cd3c0c3ccbc.zip
Renamed Script::gpldisasm() to Script::run().
svn-id: r41920
Diffstat (limited to 'engines')
-rw-r--r--engines/draci/script.cpp2
-rw-r--r--engines/draci/script.h2
2 files changed, 2 insertions, 2 deletions
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);