Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 21, 2007, 1:52:38 AM (18 years ago)
Author:
bknecht
Message:

hud updated

File:
1 edited

Legend:

Unmodified
Added
Removed
  • branches/presentation/src/world_entities/weapons/weapon_manager.cc

    r10739 r10759  
    124124void WeaponManager::showCrosshair()
    125125{
    126   this->crosshair->setVisibility( true);
     126  if (this->crosshair)
     127        this->crosshair->setVisibility( true);
    127128}
    128129
    129130void WeaponManager::hideCrosshair()
    130131{
    131   this->crosshair->setVisibility( false);
     132  if (this->crosshair)
     133        this->crosshair->setVisibility( false);
    132134}
    133135
Note: See TracChangeset for help on using the changeset viewer.