mirror of
https://github.com/libretro/scummvm.git
synced 2025-04-03 23:31:57 +00:00
Changed abs() to ABS() in a few places.
svn-id: r50890
This commit is contained in:
parent
b91ef12897
commit
f98fa72ef3
engines
@ -324,7 +324,7 @@ void WalkingMap::drawOverlayRectangle(const Common::Point &p, byte colour, byte
|
||||
}
|
||||
|
||||
int WalkingMap::pointsBetween(const Common::Point &p1, const Common::Point &p2) {
|
||||
return MAX(abs(p2.x - p1.x), abs(p2.y - p1.y));
|
||||
return MAX(ABS(p2.x - p1.x), ABS(p2.y - p1.y));
|
||||
}
|
||||
|
||||
Common::Point WalkingMap::interpolate(const Common::Point &p1, const Common::Point &p2, int i, int n) {
|
||||
@ -636,7 +636,7 @@ bool WalkingState::walkOnNextEdge() {
|
||||
Movement WalkingState::animationForDirection(const Common::Point &here, const Common::Point &there) {
|
||||
const int dx = there.x - here.x;
|
||||
const int dy = there.y - here.y;
|
||||
if (abs(dx) >= abs(dy)) {
|
||||
if (ABS(dx) >= ABS(dy)) {
|
||||
return dx >= 0 ? kMoveRight : kMoveLeft;
|
||||
} else {
|
||||
return dy >= 0 ? kMoveDown : kMoveUp;
|
||||
|
@ -312,9 +312,9 @@ void DrasculaEngine::quadrant_2() {
|
||||
float distanceX, distanceY;
|
||||
|
||||
if (currentChapter == 2)
|
||||
distanceX = abs(curX + curWidth - roomX);
|
||||
distanceX = ABS(curX + curWidth - roomX);
|
||||
else
|
||||
distanceX = abs(curX + curWidth / 2 - roomX);
|
||||
distanceX = ABS(curX + curWidth / 2 - roomX);
|
||||
|
||||
distanceY = (curY + curHeight) - roomY;
|
||||
|
||||
@ -354,9 +354,9 @@ void DrasculaEngine::quadrant_4() {
|
||||
float distanceX, distanceY;
|
||||
|
||||
if (currentChapter == 2)
|
||||
distanceX = abs(curX + curWidth - roomX);
|
||||
distanceX = ABS(curX + curWidth - roomX);
|
||||
else
|
||||
distanceX = abs(curX + curWidth / 2 - roomX);
|
||||
distanceX = ABS(curX + curWidth / 2 - roomX);
|
||||
|
||||
distanceY = roomY - (curY + curHeight);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user