PEGASUS: Update the MMTypes with a TimeValue/TimeScale replacement

This commit is contained in:
Matthew Hoops 2011-06-16 15:18:18 -04:00
parent e789ab0d3b
commit e5953a879b
2 changed files with 6 additions and 2 deletions

View File

@ -53,8 +53,7 @@ const tDisplayElementID kCurrentDragSpriteID = 1000;
//const Fixed kFixed1 = 1 << 16;
//const Fixed kFixedMinus1 = -1 << 16;
// Originally "TimeScale" instead of int
const int kDefaultTimeScale = 600;
const TimeScale kDefaultTimeScale = 600;
// TODO
//const RGBColor kWhiteRGB = {0xFFFF, 0xFFFF, 0xFFFF};

View File

@ -93,6 +93,11 @@ enum tSlideDirection {
kSlideDownRightMask = kSlideRightMask | kSlideDownMask
};
// ScummVM QuickTime/QuickDraw replacement types
typedef uint TimeValue;
typedef uint TimeScale;
// TODO: Fixed and RGBColor
} // End of namespace Pegasus
#endif