aboutsummaryrefslogtreecommitdiff
path: root/saga
diff options
context:
space:
mode:
authorMax Horn2005-01-23 14:30:59 +0000
committerMax Horn2005-01-23 14:30:59 +0000
commit8f51510deca23e98bf1625cd174b1dbcefa02a82 (patch)
tree62e3268308334c8ba6d2d9d69bc5025ba9dca942 /saga
parent81e9e0da7232bbcaad371affa9306d6338215b2d (diff)
downloadscummvm-rg350-8f51510deca23e98bf1625cd174b1dbcefa02a82.tar.gz
scummvm-rg350-8f51510deca23e98bf1625cd174b1dbcefa02a82.tar.bz2
scummvm-rg350-8f51510deca23e98bf1625cd174b1dbcefa02a82.zip
Fix warnings
svn-id: r16622
Diffstat (limited to 'saga')
-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) {