diff options
-rwxr-xr-x | engines/pegasus/MMShell/MMConstants.h | 3 | ||||
-rwxr-xr-x | engines/pegasus/MMShell/MMTypes.h | 5 |
2 files changed, 6 insertions, 2 deletions
diff --git a/engines/pegasus/MMShell/MMConstants.h b/engines/pegasus/MMShell/MMConstants.h index 21852a9e39..036caad84a 100755 --- a/engines/pegasus/MMShell/MMConstants.h +++ b/engines/pegasus/MMShell/MMConstants.h @@ -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}; diff --git a/engines/pegasus/MMShell/MMTypes.h b/engines/pegasus/MMShell/MMTypes.h index ae5f0d0a4f..93eac4e293 100755 --- a/engines/pegasus/MMShell/MMTypes.h +++ b/engines/pegasus/MMShell/MMTypes.h @@ -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 |