Skip to content

Commit

Permalink
FULLPIPE: Initialize variable. CID 1109665
Browse files Browse the repository at this point in the history
  • Loading branch information
sev- committed Nov 2, 2013
1 parent aa2a6d7 commit 69ac3bb
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion engines/fullpipe/motion.cpp
Expand Up @@ -1068,7 +1068,7 @@ MovGraphLink *MovGraph2::findLink1(int x, int y, int idx, int fuzzyMatch) {

MovGraphLink *MovGraph2::findLink2(int x, int y) {
double mindist = 1.0e20;
MovGraphLink *res;
MovGraphLink *res = 0;

for (ObList::iterator i = _links.begin(); i != _links.end(); ++i) {
assert(((CObject *)*i)->_objtype == kObjTypeMovGraphLink);
Expand Down

0 comments on commit 69ac3bb

Please sign in to comment.