Added NoteSkin metrics to accomodate Prex NoteSkin

This commit is contained in:
Chris Danford
2002-09-17 23:02:37 +00:00
parent 94e9475440
commit 44baba9fd3
13 changed files with 276 additions and 361 deletions
+1 -1
View File
@@ -21,9 +21,9 @@ D3DXCOLOR NoteTypeToColor( NoteType nt )
case NOTE_TYPE_12TH: return D3DXCOLOR(1,0,1,1); // purple
case NOTE_TYPE_16TH: return D3DXCOLOR(1,1,0,1); // yellow
case NOTE_TYPE_24TH: return D3DXCOLOR(0,1,1,1); // light blue
case NOTE_TYPE_32ND: // fall through
default:
ASSERT(0);
case NOTE_TYPE_32ND: // fall through
return D3DXCOLOR(0.5f,0.5f,0.5f,1); // gray
}
};