aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/cursor.cpp
diff options
context:
space:
mode:
authorMax Horn2010-06-29 14:55:32 +0000
committerMax Horn2010-06-29 14:55:32 +0000
commit8db0f726c0253300faf8b9691607715fdaa45920 (patch)
tree4e065025f1867a3924141dc2f3cd84fa60658022 /engines/sci/graphics/cursor.cpp
parent1027f870a6d78bfbbf151ca0e65cd915676792b2 (diff)
downloadscummvm-rg350-8db0f726c0253300faf8b9691607715fdaa45920.tar.gz
scummvm-rg350-8db0f726c0253300faf8b9691607715fdaa45920.tar.bz2
scummvm-rg350-8db0f726c0253300faf8b9691607715fdaa45920.zip
SCI: Rewrap more comments
svn-id: r50500
Diffstat (limited to 'engines/sci/graphics/cursor.cpp')
-rw-r--r--engines/sci/graphics/cursor.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/engines/sci/graphics/cursor.cpp b/engines/sci/graphics/cursor.cpp
index 20472d14c4..23c41c4c87 100644
--- a/engines/sci/graphics/cursor.cpp
+++ b/engines/sci/graphics/cursor.cpp
@@ -174,7 +174,8 @@ void GfxCursor::kernelSetView(GuiResourceId viewNum, int loopNum, int celNum, Co
// Compute hotspot from xoffset/yoffset
cursorHotspot = new Common::Point((celInfo->width >> 1) - celInfo->displaceX, celInfo->height - celInfo->displaceY - 1);
- // Eco Quest 1 uses a 1x1 transparent cursor to hide the cursor from the user. Some scalers don't seem to support this
+ // Eco Quest 1 uses a 1x1 transparent cursor to hide the cursor from the
+ // user. Some scalers don't seem to support this
if (width < 2 || height < 2) {
kernelHide();
delete cursorHotspot;