Added BC7 compression.

This commit is contained in:
Justin Marshall
2026-05-29 19:41:58 -07:00
parent fae1adf30d
commit 1bc7df9614
49 changed files with 448379 additions and 426132 deletions
+8
View File
@@ -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 ]++;