mirror of
https://github.com/ValveSoftware/source-sdk-2013.git
synced 2025-04-06 18:12:14 +00:00
First minor fixes
Fixed or at least helped the few issues from my issue tracker.
This commit is contained in:
parent
0fb9073f36
commit
e7df14f872
3 changed files with 9 additions and 1 deletions
|
@ -851,7 +851,10 @@ void CMapOverview::SetMap(const char * levelname)
|
|||
|
||||
if ( !m_MapKeyValues->LoadFromFile( g_pFullFileSystem, tempfile, "GAME" ) )
|
||||
{
|
||||
/* BM: I'd like to decouple the map overviews from the radar but for now, I'm suppressing this error message. */
|
||||
#if defined( CSTRIKE_DLL )
|
||||
DevMsg( 1, "Error! CMapOverview::SetMap: couldn't load file %s.\n", tempfile );
|
||||
#endif // CSTRIKE_DLL
|
||||
m_nMapTextureID = -1;
|
||||
m_MapOrigin.x = 0;
|
||||
m_MapOrigin.y = 0;
|
||||
|
|
|
@ -311,9 +311,13 @@ void ClientPrecache( void )
|
|||
CBaseEntity::PrecacheModel( "sprites/purpleglow1.vmt" );
|
||||
CBaseEntity::PrecacheModel( "sprites/purplelaser1.vmt" );
|
||||
|
||||
/* BM: No such sound!
|
||||
BUGBUG: Should there be?
|
||||
#ifndef HL2MP
|
||||
CBaseEntity::PrecacheScriptSound( "Hud.Hint" );
|
||||
#endif // HL2MP
|
||||
//*/
|
||||
|
||||
CBaseEntity::PrecacheScriptSound( "Player.FallDamage" );
|
||||
CBaseEntity::PrecacheScriptSound( "Player.Swim" );
|
||||
|
||||
|
|
|
@ -39,7 +39,8 @@ bool NPC_CheckBrushExclude( CBaseEntity *pEntity, CBaseEntity *pBrush );
|
|||
#include "tier0/memdbgon.h"
|
||||
|
||||
ConVar r_visualizetraces( "r_visualizetraces", "0", FCVAR_CHEAT );
|
||||
ConVar developer("developer", "0", 0, "Set developer message level." ); // developer mode
|
||||
ConVar developer("developer", "0", 0, "Set developer message level" ); // developer mode
|
||||
/* BM: removed a period to make the help string match the parent */
|
||||
|
||||
float UTIL_VecToYaw( const Vector &vec )
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue