diff options
author | Eugene Sandulenko | 2014-06-08 15:35:24 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2014-06-08 15:35:55 +0300 |
commit | 177735350be8c309844a0f3f933a42aaf38071cd (patch) | |
tree | 1689a7aec10ef5dfbc115984402451d8e1e8e419 | |
parent | ddff83a87ebf258a5e9832958714133098677459 (diff) | |
download | scummvm-rg350-177735350be8c309844a0f3f933a42aaf38071cd.tar.gz scummvm-rg350-177735350be8c309844a0f3f933a42aaf38071cd.tar.bz2 scummvm-rg350-177735350be8c309844a0f3f933a42aaf38071cd.zip |
FULLPIPE: Initialize variable. CID 1208916
-rw-r--r-- | engines/fullpipe/motion.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/fullpipe/motion.cpp b/engines/fullpipe/motion.cpp index 85069262f8..321df7fd22 100644 --- a/engines/fullpipe/motion.cpp +++ b/engines/fullpipe/motion.cpp @@ -2990,7 +2990,7 @@ MessageQueue *MGM::genMovement(MGMInfo *mgminfo) { int n2x = point1.x; int n2y = point1.y; int mult; - int len; + int len = -1; if (mgminfo->flags & 0x40) { mult = mgminfo->field_10; |