aboutsummaryrefslogtreecommitdiff
path: root/engines/parallaction/disk.h
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/disk.h
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/disk.h')
-rw-r--r--engines/parallaction/disk.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/parallaction/disk.h b/engines/parallaction/disk.h
index 614cf80069..ae9e448a3c 100644
--- a/engines/parallaction/disk.h
+++ b/engines/parallaction/disk.h
@@ -38,7 +38,7 @@ namespace Parallaction {
#define DIRECTORY_OFFSET_IN_FILE 0x4000
class Parallaction;
-class Graphics;
+class Gfx;
class Script;
class Archive : public Common::SeekableReadStream {
@@ -92,7 +92,7 @@ protected:
char _languageDir[3];
Parallaction *_vm;
- Graphics *_gfx;
+ Gfx *_gfx;
public:
Disk(Parallaction *vm);