|
|
@ -645,11 +645,13 @@ void IN_Impulse( void ) |
|
|
|
void IN_ScoreDown( void ) |
|
|
|
void IN_ScoreDown( void ) |
|
|
|
{ |
|
|
|
{ |
|
|
|
KeyDown( &in_score ); |
|
|
|
KeyDown( &in_score ); |
|
|
|
|
|
|
|
gHUD.m_Scoreboard.UserCmd_ShowScores(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void IN_ScoreUp( void ) |
|
|
|
void IN_ScoreUp( void ) |
|
|
|
{ |
|
|
|
{ |
|
|
|
KeyUp( &in_score ); |
|
|
|
KeyUp( &in_score ); |
|
|
|
|
|
|
|
gHUD.m_Scoreboard.UserCmd_HideScores(); |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
void IN_MLookUp( void ) |
|
|
|
void IN_MLookUp( void ) |
|
|
@ -1082,6 +1084,10 @@ void InitInput( void ) |
|
|
|
gEngfuncs.pfnAddCommand( "-reload", IN_ReloadUp ); |
|
|
|
gEngfuncs.pfnAddCommand( "-reload", IN_ReloadUp ); |
|
|
|
gEngfuncs.pfnAddCommand( "+alt1", IN_Alt1Down ); |
|
|
|
gEngfuncs.pfnAddCommand( "+alt1", IN_Alt1Down ); |
|
|
|
gEngfuncs.pfnAddCommand( "-alt1", IN_Alt1Up ); |
|
|
|
gEngfuncs.pfnAddCommand( "-alt1", IN_Alt1Up ); |
|
|
|
|
|
|
|
gEngfuncs.pfnAddCommand( "+score", IN_ScoreDown ); |
|
|
|
|
|
|
|
gEngfuncs.pfnAddCommand( "-score", IN_ScoreUp ); |
|
|
|
|
|
|
|
gEngfuncs.pfnAddCommand( "+showscores", IN_ScoreDown ); |
|
|
|
|
|
|
|
gEngfuncs.pfnAddCommand( "-showscores", IN_ScoreUp ); |
|
|
|
gEngfuncs.pfnAddCommand( "+graph", IN_GraphDown ); |
|
|
|
gEngfuncs.pfnAddCommand( "+graph", IN_GraphDown ); |
|
|
|
gEngfuncs.pfnAddCommand( "-graph", IN_GraphUp ); |
|
|
|
gEngfuncs.pfnAddCommand( "-graph", IN_GraphUp ); |
|
|
|
gEngfuncs.pfnAddCommand( "+break", IN_BreakDown ); |
|
|
|
gEngfuncs.pfnAddCommand( "+break", IN_BreakDown ); |
|
|
|