Added support for Dance Magic/Battle on Techno Motion 8-panel. Kind of hacky, but perhaps it will inspire others.

This commit is contained in:
Geoff Benson
2004-06-23 22:18:22 +00:00
parent 99b2abd1d3
commit 9609f5303a
3 changed files with 13 additions and 3 deletions
+3 -1
View File
@@ -421,7 +421,9 @@ float ArrowGetZoom( PlayerNumber pn )
{
/* Hack: make STYLE_TECHNO_VERSUS8 fit. */
if( GAMESTATE->m_CurGame == GAME_TECHNO &&
GAMESTATE->m_CurStyle == STYLE_TECHNO_VERSUS8 )
( GAMESTATE->m_CurStyle == STYLE_TECHNO_VERSUS8
|| GAMESTATE->m_PlayMode == PLAY_MODE_BATTLE
|| GAMESTATE->m_PlayMode == PLAY_MODE_RAVE ) )
return 0.6f;
return 1.0f;
}