aboutsummaryrefslogtreecommitdiff
path: root/engines/sci/graphics/cursor.cpp
diff options
context:
space:
mode:
authorMartin Kiewitz2010-04-19 16:38:36 +0000
committerMartin Kiewitz2010-04-19 16:38:36 +0000
commit88af84514b96ac3cb77ae00b996414757bce5e18 (patch)
tree7f163dfccd1df26b6a46ab8d8a043bc442882020 /engines/sci/graphics/cursor.cpp
parent5e472b1ba22a26d6cc54b9b07f20ad45cd47a89e (diff)
downloadscummvm-rg350-88af84514b96ac3cb77ae00b996414757bce5e18.tar.gz
scummvm-rg350-88af84514b96ac3cb77ae00b996414757bce5e18.tar.bz2
scummvm-rg350-88af84514b96ac3cb77ae00b996414757bce5e18.zip
SCI: added comments about sierra not upscaling cursors for shape and view cursors
svn-id: r48721
Diffstat (limited to 'engines/sci/graphics/cursor.cpp')
-rw-r--r--engines/sci/graphics/cursor.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/engines/sci/graphics/cursor.cpp b/engines/sci/graphics/cursor.cpp
index bbfa079253..48607ada17 100644
--- a/engines/sci/graphics/cursor.cpp
+++ b/engines/sci/graphics/cursor.cpp
@@ -139,7 +139,7 @@ void GfxCursor::kernelSetShape(GuiResourceId resourceId) {
heightWidth = SCI_CURSOR_SCI0_HEIGHTWIDTH;
if (_upscaledHires) {
- // Scale cursor by 2x
+ // Scale cursor by 2x - note: sierra didn't do this, but it looks much better
heightWidth *= 2;
hotspot.x *= 2;
hotspot.y *= 2;
@@ -183,7 +183,7 @@ void GfxCursor::kernelSetView(GuiResourceId viewNum, int loopNum, int celNum, Co
}
if (_upscaledHires) {
- // Scale cursor by 2x
+ // Scale cursor by 2x - note: sierra didn't do this, but it looks much better
width *= 2;
height *= 2;
cursorHotspot->x *= 2;