Browse Source

Fix build.

blackops
Night Owl 7 years ago
parent
commit
4d62e7afa9
  1. 4
      cl_dll/hud.cpp

4
cl_dll/hud.cpp

@ -108,7 +108,7 @@ int __MsgFunc_PlayMP3( const char *pszName, int iSize, void *pbuf ) @@ -108,7 +108,7 @@ int __MsgFunc_PlayMP3( const char *pszName, int iSize, void *pbuf )
BEGIN_READ( pbuf, iSize );
pszSound = READ_STRING();
if( !isXashFWGS() && gEngfuncs.pfnGetCvarPointer( "gl_overbright" ) )
if( !IsXashFWGS() && gEngfuncs.pfnGetCvarPointer( "gl_overbright" ) )
{
sprintf( cmd, "mp3 play media/%s\n", pszSound );
gEngfuncs.pfnClientCmd( cmd );
@ -121,7 +121,7 @@ int __MsgFunc_PlayMP3( const char *pszName, int iSize, void *pbuf ) @@ -121,7 +121,7 @@ int __MsgFunc_PlayMP3( const char *pszName, int iSize, void *pbuf )
void __CmdFunc_StopMP3( void )
{
if( !isXashFWGS() && gEngfuncs.pfnGetCvarPointer( "gl_overbright" ) )
if( !IsXashFWGS() && gEngfuncs.pfnGetCvarPointer( "gl_overbright" ) )
gEngfuncs.pfnClientCmd( "mp3 stop\n" );
else
gEngfuncs.pfnPrimeMusicStream( 0, 0 );

Loading…
Cancel
Save