aboutsummaryrefslogtreecommitdiff
path: root/scumm
diff options
context:
space:
mode:
authorMax Horn2005-10-21 22:49:59 +0000
committerMax Horn2005-10-21 22:49:59 +0000
commit268f12a5c05108c4c66a130307997f39bd7055f9 (patch)
tree4a1bdf41c537a34dbe8c8205fe9fa0804337baf5 /scumm
parenta915961234e319b9859a08cbd3b10ea06d3fd925 (diff)
downloadscummvm-rg350-268f12a5c05108c4c66a130307997f39bd7055f9.tar.gz
scummvm-rg350-268f12a5c05108c4c66a130307997f39bd7055f9.tar.bz2
scummvm-rg350-268f12a5c05108c4c66a130307997f39bd7055f9.zip
Added a warning (this is a very tempting way to break savegames :-)
svn-id: r19222
Diffstat (limited to 'scumm')
-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
};