diff options
author | Eugene Sandulenko | 2013-10-01 22:22:24 +0300 |
---|---|---|
committer | Eugene Sandulenko | 2013-10-01 22:22:24 +0300 |
commit | 50f2bc660be245cd7ec5c8b78ea40c39197e938c (patch) | |
tree | 303eaeaf66b639fed04c4d12083ae1ecbe19ca81 /engines | |
parent | b1a7492da88460ff13795fe16ed630ecb2489944 (diff) | |
download | scummvm-rg350-50f2bc660be245cd7ec5c8b78ea40c39197e938c.tar.gz scummvm-rg350-50f2bc660be245cd7ec5c8b78ea40c39197e938c.tar.bz2 scummvm-rg350-50f2bc660be245cd7ec5c8b78ea40c39197e938c.zip |
FULLPIPE: Unk2 -> MGM
Diffstat (limited to 'engines')
-rw-r--r-- | engines/fullpipe/motion.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/fullpipe/motion.h b/engines/fullpipe/motion.h index 99d8d3eb79..00c6404690 100644 --- a/engines/fullpipe/motion.h +++ b/engines/fullpipe/motion.h @@ -100,13 +100,13 @@ class MctlCompound : public MotionController { void initMovGraph2(); }; -class Unk2 : public CObject { +class MGM : public CObject { public: int _items; int _count; public: - Unk2() : _items(0), _count(0) {} + MGM() : _items(0), _count(0) {} }; class MovGraphNode : public CObject { @@ -178,7 +178,7 @@ class MovGraph : public MotionController { int _items; int _itemsCount; int (*_callback1)(int, int, int); - Unk2 _unk2; + MGM _mgm; public: MovGraph(); |