Fix: Avoid adding values (through ref) to uninitialised variable
This commit is contained in:
parent
ec2528db54
commit
c6241bfb75
@ -743,7 +743,7 @@ bool TrackView_render(TrackViewInfo* viewInfo, TrackData* trackData)
|
||||
}
|
||||
else
|
||||
{
|
||||
int temp;
|
||||
int temp = 0;
|
||||
x_pos += renderGroup(group, x_pos, &temp, info, trackData);
|
||||
}
|
||||
}
|
||||
|
||||
Loading…
x
Reference in New Issue
Block a user