diff options
| author | Eugene Sandulenko | 2013-09-20 22:03:36 +0300 |
|---|---|---|
| committer | Eugene Sandulenko | 2013-09-20 22:03:36 +0300 |
| commit | a9a1e69f493556351c5862ef0f426867ddc258d4 (patch) | |
| tree | c363a0367b1f6530840995b0a657632944b2f266 | |
| parent | 24af4402611e8c932ec7aa60aa773108c8d5ba07 (diff) | |
| download | scummvm-rg350-a9a1e69f493556351c5862ef0f426867ddc258d4.tar.gz scummvm-rg350-a9a1e69f493556351c5862ef0f426867ddc258d4.tar.bz2 scummvm-rg350-a9a1e69f493556351c5862ef0f426867ddc258d4.zip | |
FULLPIPE: Initisalize uninitialized variable. CID 1063191
| -rw-r--r-- | engines/fullpipe/scene.cpp | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/engines/fullpipe/scene.cpp b/engines/fullpipe/scene.cpp index 8bae697492..cc93363786 100644 --- a/engines/fullpipe/scene.cpp +++ b/engines/fullpipe/scene.cpp @@ -72,6 +72,7 @@ SceneTag::SceneTag() { _field_4 = 0; _scene = 0; _tag = 0; + _sceneId = 0; } bool SceneTag::load(MfcArchive &file) { |
