aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/walk.cpp
diff options
context:
space:
mode:
authorNicola Mettifogo2007-03-12 20:41:25 +0000
committerNicola Mettifogo2007-03-12 20:41:25 +0000
commit6f0dda093a11601085bf09deefd1ff67183f0671 (patch)
tree15cda166220758937866907970f9d4e0746015b3 /engines/parallaction/walk.cpp
parentb9a54d55a6391520c6886bd44fecbd73828a9289 (diff)
downloadscummvm-rg350-6f0dda093a11601085bf09deefd1ff67183f0671.tar.gz
scummvm-rg350-6f0dda093a11601085bf09deefd1ff67183f0671.tar.bz2
scummvm-rg350-6f0dda093a11601085bf09deefd1ff67183f0671.zip
renamed Graphics class to Gfx and Parallaction::_graphics to Parallaction::_gfx to shorten lines and avoid aliasing with framework's Graphics
svn-id: r26111
Diffstat (limited to 'engines/parallaction/walk.cpp')
-rw-r--r--engines/parallaction/walk.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/parallaction/walk.cpp b/engines/parallaction/walk.cpp
index 03910bdc55..8c456f595f 100644
--- a/engines/parallaction/walk.cpp
+++ b/engines/parallaction/walk.cpp
@@ -231,7 +231,7 @@ WalkNode *buildWalkPath(uint16 x, uint16 y) {
uint16 queryPath(uint16 x, uint16 y) {
- return _vm->_graphics->queryPath(x, y);
+ return _vm->_gfx->queryPath(x, y);
}