aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--saga/sfuncs.cpp8
1 files changed, 6 insertions, 2 deletions
diff --git a/saga/sfuncs.cpp b/saga/sfuncs.cpp
index 14177ee404..d012901722 100644
--- a/saga/sfuncs.cpp
+++ b/saga/sfuncs.cpp
@@ -410,12 +410,15 @@ void Script::sfSetFollower(SCRIPTFUNC_PARAMS) {
}
}
-static struct SceneSubstitutes {
+struct SceneSubstitutes {
int sceneId;
const char *message;
const char *name;
const char *image;
-} sceneSubstitutes[] = {
+};
+
+/*
+static SceneSubstitutes sceneSubstitutes[] = {
{
7,
"Tycho says he knows much about the northern lands. Can Rif convince "
@@ -463,6 +466,7 @@ static struct SceneSubstitutes {
"boarhall.bbm"
}
};
+*/
// Script function #16 (0x10)
void Script::sfScriptGotoScene(SCRIPTFUNC_PARAMS) {