Browse code

[NCSF] REALLY remove minor instance of variable shadowing.

Naram Qashat authored on 2014/10/16 01:43:49
Showing 1 changed files
... ...
@@ -520,11 +520,11 @@ void Track::Run()
520 520
 				case SSEQ_CMD_OPENTRACK:
521 521
 				{
522 522
 					int tNum = read8(pData);
523
-					auto startPos = &this->ply->sseq->data[read24(pData)];
523
+					auto trackPos = &this->ply->sseq->data[read24(pData)];
524 524
 					int newTrack = this->ply->TrackAlloc();
525 525
 					if (newTrack != -1)
526 526
 					{
527
-						this->ply->tracks[newTrack].Init(newTrack, this->ply, startPos, tNum);
527
+						this->ply->tracks[newTrack].Init(newTrack, this->ply, trackPos, tNum);
528 528
 						this->ply->trackIds[this->ply->nTracks++] = newTrack;
529 529
 					}
530 530
 					break;