aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--scumm/script.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/scumm/script.h b/scumm/script.h
index 08e98b2dd3..6477f61e25 100644
--- a/scumm/script.h
+++ b/scumm/script.h
@@ -27,7 +27,13 @@
namespace Scumm {
-/* System Wide Constants */
+/**
+ * The number of script slots, which determines the maximal number
+ * of concurrently running scripts.
+ * WARNING: Do NOT changes this value unless you really have to, as
+ * this will break savegame compatibility if done carelessly. If you
+ * have to change it, make sure you update saveload.cpp accordingly!
+ */
enum {
NUM_SCRIPT_SLOT = 80
};