Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 6, 2018, 12:15:25 AM (7 years ago)
Author:
landauf
Message:

merged the remaining commits of HUD_HS16 branch back to trunk (except commit r11392 which added DDDialogue that seems to be just a test)

Location:
code/trunk
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • code/trunk

  • code/trunk/src/modules/pickup/PickupManager.cc

    r11353 r11700  
    103103        // Destroying all the WeakPointers that are still there.
    104104        this->pickups_.clear();
    105 
    106105        this->indexes_.clear();
    107106
    108         orxout(internal_info, context::pickups) << "PickupManager destroyed." << endl;
     107        orxout() << "PickupManager destroyed." << endl;
    109108    }
    110109
     
    266265        assert(pickup);
    267266
     267        orxout() << "just got called"<<endl;
    268268        for (HUDPickupSystem* hud : ObjectList<HUDPickupSystem>())
    269269            pickupSystem = hud;
     
    300300
    301301            if(pickupSystem)
    302                 pickupSystem->updatePickupList(picks, indexes_);
     302                pickupSystem->sync(picks, indexes_);
    303303           
    304304        }
     
    316316
    317317            if(pickupSystem)
    318                 pickupSystem->removePickup(pickup);
     318                pickupSystem->sync(picks, indexes_);
     319            orxout() << "end of pickupChangedPickedUp" << endl;
    319320        }
    320321
Note: See TracChangeset for help on using the changeset viewer.