StyleType enum name cleanup

This commit is contained in:
Chris Danford
2007-02-22 06:56:17 +00:00
parent 93e93a0fa6
commit 491ab6eaf5
9 changed files with 71 additions and 71 deletions
+2 -2
View File
@@ -85,8 +85,8 @@ void ArrowEffects::Update()
for( int iColNum = 0; iColNum < MAX_COLS_PER_PLAYER; ++iColNum )
{
const int iNumCols = pStyle->m_iColsPerPlayer;
const int iNumSides = (pStyle->m_StyleType==ONE_PLAYER_TWO_SIDES ||
pStyle->m_StyleType==TWO_PLAYERS_SHARED_SIDES) ? 2 : 1;
const int iNumSides = (pStyle->m_StyleType==StyleType_OnePlayerTwoSides ||
pStyle->m_StyleType==StyleType_TwoPlayersSharedSides) ? 2 : 1;
const int iNumColsPerSide = iNumCols / iNumSides;
const int iSideIndex = iColNum / iNumColsPerSide;
const int iColOnSide = iColNum % iNumColsPerSide;