Fix: Avoid adding values (through ref) to uninitialised variable

This commit is contained in:
mathieu _alkama_ m 2015-12-13 13:10:51 +01:00
parent ec2528db54
commit c6241bfb75

View File

@ -743,7 +743,7 @@ bool TrackView_render(TrackViewInfo* viewInfo, TrackData* trackData)
} }
else else
{ {
int temp; int temp = 0;
x_pos += renderGroup(group, x_pos, &temp, info, trackData); x_pos += renderGroup(group, x_pos, &temp, info, trackData);
} }
} }