As far as I can tell, StyleI.player is always the

same as MenuI.player if the style is set.  Phase
it out.
This commit is contained in:
Glenn Maynard
2006-09-12 23:29:08 +00:00
parent 8a6f490c80
commit 7bab74efab
5 changed files with 11 additions and 11 deletions
+2 -2
View File
@@ -1920,7 +1920,7 @@ void ScreenEdit::InputRecord( const InputEventPlus &input, EditButton EditB )
return;
}
if( input.StyleI.player != PLAYER_1 )
if( input.MenuI.player != PLAYER_1 )
return; // ignore
const int iCol = input.StyleI.col;
@@ -2082,7 +2082,7 @@ void ScreenEdit::InputPlay( const InputEventPlus &input, EditButton EditB )
if( PREFSMAN->m_AutoPlay != PC_HUMAN )
return;
switch( input.StyleI.player )
switch( input.MenuI.player )
{
case PLAYER_1:
m_Player->Step( input.StyleI.col, -1, input.DeviceI.ts, false, input.type == IET_RELEASE );