fix incorrect Perspective option applied

This commit is contained in:
Chris Danford
2003-04-02 07:03:48 +00:00
parent f4429f4ddb
commit eedd17db34
+1 -1
View File
@@ -171,7 +171,7 @@ void ScreenPlayerOptions::ExportOptions()
po.m_bHoldNotes = (m_iSelectedOption[p][PO_HOLD_NOTES] == 1);
po.m_fDark = (m_iSelectedOption[p][PO_DARK] == 1) ? 1.f : 0.f;
po.m_fPerspectiveTilt = SCALE( m_iSelectedOption[p][PO_PERSPECTIVE], 0, 2, -1, +1 );
po.m_fPerspectiveTilt = m_iSelectedOption[p][PO_PERSPECTIVE] - 1;
}
}