aboutsummaryrefslogtreecommitdiff
path: root/engines/hdb/lua-script.h
diff options
context:
space:
mode:
authorNipun Garg2019-06-18 19:45:44 +0530
committerEugene Sandulenko2019-09-03 17:16:48 +0200
commitc1511959d7dcf5182c259e5f98cdcfa85a900d6f (patch)
tree1ec9e747403c062270e5814b00699e008fdee2fd /engines/hdb/lua-script.h
parentc4ac26f341f86cd6e44306b4883025ea83b712e1 (diff)
downloadscummvm-rg350-c1511959d7dcf5182c259e5f98cdcfa85a900d6f.tar.gz
scummvm-rg350-c1511959d7dcf5182c259e5f98cdcfa85a900d6f.tar.bz2
scummvm-rg350-c1511959d7dcf5182c259e5f98cdcfa85a900d6f.zip
HDB: Fix argument type in checkParameters
Diffstat (limited to 'engines/hdb/lua-script.h')
-rw-r--r--engines/hdb/lua-script.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/hdb/lua-script.h b/engines/hdb/lua-script.h
index 81d9980713..37b8df9d73 100644
--- a/engines/hdb/lua-script.h
+++ b/engines/hdb/lua-script.h
@@ -42,7 +42,7 @@ public:
bool callFunction(const char *name, int returns);
bool executeMPC(Common::SeekableReadStream *stream, const char *name, const char *scriptName, int32 length);
bool executeFile(const Common::String &filename);
- void checkParameters(char *func, int params);
+ void checkParameters(const char *func, int params);
private:
lua_State *_state;