Something changed in project file. Don't know what/where.

This commit is contained in:
Thai Pangsakulyanont
2010-10-15 18:04:17 +07:00
parent f5cf4ef4ce
commit 63ebda8a8a
2 changed files with 11 additions and 3 deletions
@@ -5558,7 +5558,6 @@
isa = PBXProject;
buildConfigurationList = AAC845130856A19700A9FEAB /* Build configuration list for PBXProject "stepmania" */;
compatibilityVersion = "Xcode 3.0";
developmentRegion = English;
hasScannedForEncodings = 1;
knownRegions = (
English,
+11 -2
View File
@@ -911,11 +911,20 @@ void NoteField::DrawPrimitives()
{
int i = begin->first;
const TapNote &tn = begin->second; //m_pNoteData->GetTapNote(c, i);
// Switch modified by Wolfman2000, tested by Saturn2888
// Fixes hold head overlapping issue, but not the rolls.
switch( tn.type )
{
case TapNote::empty: // no note here
//case TapNote::hold_head:
continue; // skip
{
continue;
}
case TapNote::hold_head:
{
//if (tn.subType == TapNote::hold_head_roll)
continue; // skip
}
}
// Don't draw hidden (fully judged) steps.