diff options
-rw-r--r-- | scumm/cursor.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/scumm/cursor.cpp b/scumm/cursor.cpp index d0a5ec8716..fd8d03bc85 100644 --- a/scumm/cursor.cpp +++ b/scumm/cursor.cpp @@ -236,6 +236,8 @@ void ScummEngine::decompressDefaultCursor(int idx) { byte *hotspot = _grabbedCursor + _cursor.hotspotY * _cursor.width + _cursor.hotspotX; // Crosshair, slightly assymetric + // TODO: Instead of setting this up via code, we should simply extend + // default_cursor_images to contain this shape. for (i = 0; i < 7; i++) { *(hotspot - 5 - i) = color; |