summaryrefslogtreecommitdiff
path: root/src/scripting/script.hpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/scripting/script.hpp')
-rw-r--r--src/scripting/script.hpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/src/scripting/script.hpp b/src/scripting/script.hpp
index dfba06f0..6f5dded6 100644
--- a/src/scripting/script.hpp
+++ b/src/scripting/script.hpp
@@ -61,8 +61,11 @@ class Script
/**
* Loads a chunk of text into script context and executes its global
* statements.
+ *
+ * @param prog the program text to load
+ * @param name the name of the text, used for error reporting
*/
- virtual void load(const char *) = 0;
+ virtual void load(const char *prog, const char *name) = 0;
/**
* Loads a text file into script context and executes its global