diff options
author | Max Horn | 2005-01-23 14:30:59 +0000 |
---|---|---|
committer | Max Horn | 2005-01-23 14:30:59 +0000 |
commit | 8f51510deca23e98bf1625cd174b1dbcefa02a82 (patch) | |
tree | 62e3268308334c8ba6d2d9d69bc5025ba9dca942 /saga | |
parent | 81e9e0da7232bbcaad371affa9306d6338215b2d (diff) | |
download | scummvm-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.cpp | 8 |
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) { |