From 881eee810541a312b6c35dbdce4852dbf2d2f6d9 Mon Sep 17 00:00:00 2001 From: Max Horn Date: Thu, 24 Sep 2009 22:10:39 +0000 Subject: SCI: Fix spelling svn-id: r44318 --- engines/sci/engine/kmath.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'engines/sci/engine/kmath.cpp') diff --git a/engines/sci/engine/kmath.cpp b/engines/sci/engine/kmath.cpp index 0391316e62..180271bb78 100644 --- a/engines/sci/engine/kmath.cpp +++ b/engines/sci/engine/kmath.cpp @@ -129,7 +129,7 @@ reg_t kCosDiv(EngineState *s, int, int argc, reg_t *argv) { double cosval = cos(angle * PI / 180.0); if ((cosval < 0.0001) && (cosval > -0.0001)) { - warning("Attepted division by zero"); + warning("Attempted division by zero"); return make_reg(0, 0); } else return make_reg(0, (int16)(value / cosval)); @@ -141,7 +141,7 @@ reg_t kSinDiv(EngineState *s, int, int argc, reg_t *argv) { double sinval = sin(angle * PI / 180.0); if ((sinval < 0.0001) && (sinval > -0.0001)) { - warning("Attepted division by zero"); + warning("Attempted division by zero"); return make_reg(0, 0); } else return make_reg(0, (int16)(value / sinval)); -- cgit v1.2.3