Skip to content

Commit

Permalink
Merge branch 'opfor' into opforfixed
Browse files Browse the repository at this point in the history
  • Loading branch information
nekonomicon committed Sep 19, 2023
2 parents 9bcc5fb + c9249af commit 804c0ab
Show file tree
Hide file tree
Showing 9 changed files with 572 additions and 958 deletions.
356 changes: 0 additions & 356 deletions cl_dll/neon_mathfun.h

This file was deleted.

7 changes: 3 additions & 4 deletions cl_dll/saytext.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -100,10 +100,11 @@ int CHudSayText::Draw( float flTime )
int y = Y_START;

#if USE_VGUI
if( ( gViewPort && gViewPort->AllowedToPrintText() == FALSE ) || !m_HUD_saytext->value )
if( ( gViewPort && gViewPort->AllowedToPrintText() == FALSE ) )
return 1;
#endif

if ( !m_HUD_saytext->value )
return 1;

// make sure the scrolltime is within reasonable bounds, to guard against the clock being reset
flScrollTime = Q_min( flScrollTime, flTime + m_HUD_saytext_time->value );
Expand Down Expand Up @@ -173,8 +174,6 @@ void CHudSayText::SayTextPrint( const char *pszBuf, int iBufSize, int clientInde
ConsolePrint( pszBuf );
return;
}
#else
ConsolePrint( pszBuf );
#endif

int i;
Expand Down
Loading

0 comments on commit 804c0ab

Please sign in to comment.