diff options
| -rw-r--r-- | engines/saga/saga.h | 6 | 
1 files changed, 1 insertions, 5 deletions
| diff --git a/engines/saga/saga.h b/engines/saga/saga.h index 422eaa530d..db581f2c8c 100644 --- a/engines/saga/saga.h +++ b/engines/saga/saga.h @@ -311,7 +311,6 @@ enum GameObjectTypes {  enum ScriptTimings {  	kScriptTimeTicksPerSecond = (728L/10L), -	kScriptTimeTicksPerSecondIHNM = 72,  	kRepeatSpeedTicks = (728L/10L)/3,  	kNormalFadeDuration = 320, // 64 steps, 5 msec each  	kQuickFadeDuration = 64,  // 64 steps, 1 msec each @@ -586,10 +585,7 @@ public:  	}  	inline int ticksToMSec(int tick) const { -		if (getGameId() == GID_ITE) -			return tick * 1000 / kScriptTimeTicksPerSecond; -		else -			return tick * 1000 / kScriptTimeTicksPerSecondIHNM; +		return tick * 1000 / kScriptTimeTicksPerSecond;  	}   private: | 
