aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEugene Sandulenko2013-10-01 22:22:24 +0300
committerEugene Sandulenko2013-10-01 22:22:24 +0300
commit50f2bc660be245cd7ec5c8b78ea40c39197e938c (patch)
tree303eaeaf66b639fed04c4d12083ae1ecbe19ca81
parentb1a7492da88460ff13795fe16ed630ecb2489944 (diff)
downloadscummvm-rg350-50f2bc660be245cd7ec5c8b78ea40c39197e938c.tar.gz
scummvm-rg350-50f2bc660be245cd7ec5c8b78ea40c39197e938c.tar.bz2
scummvm-rg350-50f2bc660be245cd7ec5c8b78ea40c39197e938c.zip
FULLPIPE: Unk2 -> MGM
-rw-r--r--engines/fullpipe/motion.h6
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();