Something changed in project file. Don't know what/where.
This commit is contained in:
@@ -5558,7 +5558,6 @@
|
|||||||
isa = PBXProject;
|
isa = PBXProject;
|
||||||
buildConfigurationList = AAC845130856A19700A9FEAB /* Build configuration list for PBXProject "stepmania" */;
|
buildConfigurationList = AAC845130856A19700A9FEAB /* Build configuration list for PBXProject "stepmania" */;
|
||||||
compatibilityVersion = "Xcode 3.0";
|
compatibilityVersion = "Xcode 3.0";
|
||||||
developmentRegion = English;
|
|
||||||
hasScannedForEncodings = 1;
|
hasScannedForEncodings = 1;
|
||||||
knownRegions = (
|
knownRegions = (
|
||||||
English,
|
English,
|
||||||
|
|||||||
+11
-2
@@ -911,11 +911,20 @@ void NoteField::DrawPrimitives()
|
|||||||
{
|
{
|
||||||
int i = begin->first;
|
int i = begin->first;
|
||||||
const TapNote &tn = begin->second; //m_pNoteData->GetTapNote(c, i);
|
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 )
|
switch( tn.type )
|
||||||
{
|
{
|
||||||
case TapNote::empty: // no note here
|
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.
|
// Don't draw hidden (fully judged) steps.
|
||||||
|
|||||||
Reference in New Issue
Block a user