aboutsummaryrefslogtreecommitdiff
path: root/engines/hopkins/lines.h
diff options
context:
space:
mode:
authorStrangerke2013-02-19 18:06:05 +0100
committerStrangerke2013-02-19 18:06:05 +0100
commit0f786d83a2a23b7bc1d3789fa5d06facb68f6465 (patch)
tree99309986a4ec5cff0304fb97091f8dd8d8602485 /engines/hopkins/lines.h
parent7db7f8fff089b635e2bad7935f2fb0585e83aeb7 (diff)
downloadscummvm-rg350-0f786d83a2a23b7bc1d3789fa5d06facb68f6465.tar.gz
scummvm-rg350-0f786d83a2a23b7bc1d3789fa5d06facb68f6465.tar.bz2
scummvm-rg350-0f786d83a2a23b7bc1d3789fa5d06facb68f6465.zip
HOPKINS: More renaming in LinesManager
Diffstat (limited to 'engines/hopkins/lines.h')
-rw-r--r--engines/hopkins/lines.h10
1 files changed, 5 insertions, 5 deletions
diff --git a/engines/hopkins/lines.h b/engines/hopkins/lines.h
index 922a76d035..e38ce6a6b0 100644
--- a/engines/hopkins/lines.h
+++ b/engines/hopkins/lines.h
@@ -91,12 +91,12 @@ struct ZonePItem {
};
struct RouteItem {
- int16 _X;
- int16 _Y;
+ int16 _x;
+ int16 _y;
Directions _dir;
- bool isValid() const { return _X != -1 || _Y != -1; }
- void invalidate() { _X = _Y = -1; _dir = DIR_NONE; }
- void set(int16 X, int16 Y, Directions dir) { _X = X; _Y = Y; _dir = dir; }
+ bool isValid() const { return _x != -1 || _y != -1; }
+ void invalidate() { _x = _y = -1; _dir = DIR_NONE; }
+ void set(int16 X, int16 Y, Directions dir) { _x = X; _y = Y; _dir = dir; }
};