aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/neighborhood/mars/spacejunk.h
diff options
context:
space:
mode:
authorMatthew Hoops2011-12-16 14:17:50 -0500
committerMatthew Hoops2011-12-16 14:17:50 -0500
commit12efb47b536d2f663c9cde2739a1fd40599da669 (patch)
tree9ce08d6a798ff5138ee2908642e6468d7d2b249e /engines/pegasus/neighborhood/mars/spacejunk.h
parentfdced472abc830c07d28474727db004c8018fcac (diff)
downloadscummvm-rg350-12efb47b536d2f663c9cde2739a1fd40599da669.tar.gz
scummvm-rg350-12efb47b536d2f663c9cde2739a1fd40599da669.tar.bz2
scummvm-rg350-12efb47b536d2f663c9cde2739a1fd40599da669.zip
PEGASUS: Remove t prefix from typedefs
Some other minor cleanup too
Diffstat (limited to 'engines/pegasus/neighborhood/mars/spacejunk.h')
-rwxr-xr-xengines/pegasus/neighborhood/mars/spacejunk.h12
1 files changed, 6 insertions, 6 deletions
diff --git a/engines/pegasus/neighborhood/mars/spacejunk.h b/engines/pegasus/neighborhood/mars/spacejunk.h
index ba5aa753e0..03943b92c9 100755
--- a/engines/pegasus/neighborhood/mars/spacejunk.h
+++ b/engines/pegasus/neighborhood/mars/spacejunk.h
@@ -32,22 +32,22 @@
namespace Pegasus {
-const tCoordType kJunkMaxScreenSize = 250;
+const CoordType kJunkMaxScreenSize = 250;
const float kJunkSize = convertScreenVToSpaceY(kShuttleWindowMidV - kJunkMaxScreenSize / 2, kJunkMinDistance) -
convertScreenVToSpaceY(kShuttleWindowMidV + kJunkMaxScreenSize / 2, kJunkMinDistance);
class SpaceJunk : public ScalingMovie, public Idler {
public:
- SpaceJunk(const tDisplayElementID);
+ SpaceJunk(const DisplayElementID);
virtual ~SpaceJunk();
- void setCenter(const tCoordType, const tCoordType);
- void setScaleSize(const tCoordType);
+ void setCenter(const CoordType, const CoordType);
+ void setScaleSize(const CoordType);
void useIdleTime();
- void launchJunk(int16, tCoordType, tCoordType);
+ void launchJunk(int16, CoordType, CoordType);
void getJunkPosition(Point3D &);
bool isJunkFlying();
@@ -67,7 +67,7 @@ protected:
Common::Point _center;
bool _bouncing;
Common::Point _bounceStart, _bounceStop;
- tCoordType _bounceSizeStart, _bounceSizeStop;
+ CoordType _bounceSizeStart, _bounceSizeStop;
TimeValue _bounceTime;
};