mirror of
https://github.com/jmarshall23/DoomRTX.git
synced 2026-08-12 08:11:10 +02:00
Added BC7 compression.
This commit is contained in:
@@ -210,6 +210,8 @@ userCmdString_t userCmdStrings[] = {
|
||||
{ "_impulse11", UB_IMPULSE11 },
|
||||
{ "_impulse12", UB_IMPULSE12 },
|
||||
{ "_impulse13", UB_IMPULSE13 },
|
||||
{ "_reload", UB_IMPULSE13 },
|
||||
{ "reload", UB_IMPULSE13 },
|
||||
{ "_impulse14", UB_IMPULSE14 },
|
||||
{ "_impulse15", UB_IMPULSE15 },
|
||||
{ "_impulse16", UB_IMPULSE16 },
|
||||
@@ -935,6 +937,12 @@ void idUsercmdGenLocal::Key( int keyNum, bool down ) {
|
||||
|
||||
int action = idKeyInput::GetUsercmdAction( keyNum );
|
||||
|
||||
#if !defined( QUAKE4 ) && !defined( PREY )
|
||||
if ( action == UB_NONE && keyNum == 'r' && idKeyInput::GetBinding( keyNum )[0] == '\0' ) {
|
||||
action = UB_IMPULSE13;
|
||||
}
|
||||
#endif
|
||||
|
||||
if ( down ) {
|
||||
|
||||
buttonState[ action ]++;
|
||||
|
||||
Reference in New Issue
Block a user