diff options
author | Filippos Karapetis | 2018-12-23 20:41:33 +0200 |
---|---|---|
committer | Filippos Karapetis | 2018-12-23 20:41:33 +0200 |
commit | 92aa71395849afc4b31cec8af71b82d1330c1ab5 (patch) | |
tree | b43d0a575e07e329f0f92f684ce87dd33347b7f7 /engines/fullpipe | |
parent | 9fe1491a640b87e906b7039dbcbe3902857aed94 (diff) | |
download | scummvm-rg350-92aa71395849afc4b31cec8af71b82d1330c1ab5.tar.gz scummvm-rg350-92aa71395849afc4b31cec8af71b82d1330c1ab5.tar.bz2 scummvm-rg350-92aa71395849afc4b31cec8af71b82d1330c1ab5.zip |
FULLPIPE: Silence a false positive warning in MSVC
MSVC complained about a potentially uninitialized variable here
Diffstat (limited to 'engines/fullpipe')
-rw-r--r-- | engines/fullpipe/statesaver.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/statesaver.cpp b/engines/fullpipe/statesaver.cpp index 942c07ae53..7cd10e5e99 100644 --- a/engines/fullpipe/statesaver.cpp +++ b/engines/fullpipe/statesaver.cpp @@ -63,7 +63,7 @@ bool GameLoader::writeSavegame(Scene *sc, const char *fname, const Common::Strin GameVar *nxt = 0; GameVar *prv = 0; - GameVar *par; + GameVar *par = 0; if (v) { nxt = v->_nextVarObj; prv = v->_prevVarObj; |