Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Aug 1, 2011, 7:09:29 PM (13 years ago)
Author:
landauf
Message:

Replaced COUT() with orxout() in all modules. phew.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/branches/output/src/modules/pickup/items/SpeedPickup.cc

    r8727 r8811  
    180180        if(ship == NULL)
    181181        {
    182             COUT(1) << "Invalid PickupCarrier in SpeedPickup." << std::endl;
     182            orxout(internal_error, context::pickups) << "Invalid PickupCarrier in SpeedPickup." << endl;
    183183        }
    184184
     
    221221        else
    222222        {
    223             COUT(1) << "Invalid duration in SpeedPickup." << std::endl;
     223            orxout(internal_error, context::pickups) << "Invalid duration in SpeedPickup." << endl;
    224224            this->duration_ = 0.0f;
    225225        }
     
    240240        else
    241241        {
    242             COUT(1) << "Invalid speedAdd in SpeedPickup." << std::endl;
     242            orxout(internal_error, context::pickups) << "Invalid speedAdd in SpeedPickup." << endl;
    243243            this->speedAdd_ = 0.0f;
    244244        }
     
    259259        else
    260260        {
    261             COUT(1) << "Invalid speedMultiply in SpeedPickup." << std::endl;
     261            orxout(internal_error, context::pickups) << "Invalid speedMultiply in SpeedPickup." << endl;
    262262            this->speedMultiply_ = 1.0f;
    263263        }
Note: See TracChangeset for help on using the changeset viewer.