aboutsummaryrefslogtreecommitdiff
path: root/engines/tinsel/tinsel.cpp
diff options
context:
space:
mode:
authorTorbjörn Andersson2012-11-22 23:11:27 +0100
committerTorbjörn Andersson2012-11-22 23:11:27 +0100
commit0da424efb6cf105b9fb5e4a0ae259a63a9d7b1e1 (patch)
treed6774ab1767156281da83fbdf7a4544977edcc9f /engines/tinsel/tinsel.cpp
parent29afdabb6b703f614f6fa5ab6138953ed5c3d6dd (diff)
downloadscummvm-rg350-0da424efb6cf105b9fb5e4a0ae259a63a9d7b1e1.tar.gz
scummvm-rg350-0da424efb6cf105b9fb5e4a0ae259a63a9d7b1e1.tar.bz2
scummvm-rg350-0da424efb6cf105b9fb5e4a0ae259a63a9d7b1e1.zip
TINSEL: Fix typo in comment
Diffstat (limited to 'engines/tinsel/tinsel.cpp')
-rw-r--r--engines/tinsel/tinsel.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/engines/tinsel/tinsel.cpp b/engines/tinsel/tinsel.cpp
index e09e2c1dcf..16ba6a81e3 100644
--- a/engines/tinsel/tinsel.cpp
+++ b/engines/tinsel/tinsel.cpp
@@ -1053,7 +1053,7 @@ bool TinselEngine::pollEvent() {
case Common::EVENT_MOUSEMOVE:
{
// This fragment takes care of Tinsel 2 when it's been compiled with
- // blank areas at the top and bottom of thes creen
+ // blank areas at the top and bottom of the screen
int ySkip = TinselV2 ? (g_system->getHeight() - _vm->screen().h) / 2 : 0;
if ((event.mouse.y >= ySkip) && (event.mouse.y < (g_system->getHeight() - ySkip)))
_mousePos = Common::Point(event.mouse.x, event.mouse.y - ySkip);