Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jan 21, 2016, 1:59:04 PM (8 years ago)
Author:
muemart
Message:

Fix some clang-tidy warnings.
Also, Serialise.h was doing some C-style casts that ended up being const casts. I moved those const casts as close to the source as possible and changed the loadAndIncrease functions to not do that.

File:
1 edited

Legend:

Unmodified
Added
Removed
  • code/trunk/src/modules/invader/InvaderEnemyShooter.cc

    r11071 r11083  
    6363            float distPlayer = player->getPosition().z - getPosition().z;
    6464            // orxout() << "i'm different!" << endl;
    65             float newZ = 2/(pow(abs(getPosition().x - player->getPosition().x) * 0.01f, 2) + 1) * distPlayer;
    66             setVelocity(Vector3(950 - abs(distPlayer), 0, newZ));
     65            float newZ = 2/(pow(std::abs(getPosition().x - player->getPosition().x) * 0.01f, 2) + 1) * distPlayer;
     66            setVelocity(Vector3(950 - std::abs(distPlayer), 0, newZ));
    6767        }
    6868        Pawn::tick(dt);
Note: See TracChangeset for help on using the changeset viewer.