aboutsummaryrefslogtreecommitdiff
path: root/engines/pegasus/transition.h
diff options
context:
space:
mode:
authorMatthew Hoops2011-12-16 23:24:55 -0500
committerMatthew Hoops2011-12-16 23:24:55 -0500
commitf72884cb7bbe594888f6d14a3e03c7839ef2c508 (patch)
tree14df52c836810a427fcfdacfa71e2d54ea301a33 /engines/pegasus/transition.h
parent12efb47b536d2f663c9cde2739a1fd40599da669 (diff)
downloadscummvm-rg350-f72884cb7bbe594888f6d14a3e03c7839ef2c508.tar.gz
scummvm-rg350-f72884cb7bbe594888f6d14a3e03c7839ef2c508.tar.bz2
scummvm-rg350-f72884cb7bbe594888f6d14a3e03c7839ef2c508.zip
PEGASUS: Cleanup some constants
Added missing static qualifiers, get rid of some short/long
Diffstat (limited to 'engines/pegasus/transition.h')
-rwxr-xr-xengines/pegasus/transition.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/engines/pegasus/transition.h b/engines/pegasus/transition.h
index 8be095adf2..dcd68e4c64 100755
--- a/engines/pegasus/transition.h
+++ b/engines/pegasus/transition.h
@@ -50,10 +50,10 @@ private:
// Transitions are faders that range over [0,1000], which makes their
// "resolution" one tenth of a percent
-const long kTransitionBottom = 0;
-const long kTransitionTop = 1000;
+static const int kTransitionBottom = 0;
+static const int kTransitionTop = 1000;
-const long kTransitionRange = kTransitionTop - kTransitionBottom;
+static const int kTransitionRange = kTransitionTop - kTransitionBottom;
class Transition : public FaderAnimation {
public: