From bb0b18515b9fe88bb537a366e5a18c6e57d78d6a Mon Sep 17 00:00:00 2001 From: Torbjörn Andersson Date: Tue, 24 Aug 2004 06:20:30 +0000 Subject: Fixed slight regression in the Loom cursor shape: The whole thing was shifted one step to the left, so the leftmost column wasn't included. (Hotspot is still wrong, of course - that's a different bug.) svn-id: r14725 --- scumm/cursor.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scumm/cursor.cpp b/scumm/cursor.cpp index 5a86396f57..a37486f899 100644 --- a/scumm/cursor.cpp +++ b/scumm/cursor.cpp @@ -287,7 +287,7 @@ void ScummEngine::redefineBuiltinCursorFromChar(int index, int chr) { for (int h = 0; h < s.h; h++) { for (int w = 0; w < s.w; w++) { if (buf[s.pitch * h + w] != 123) - *ptr |= 1 << (16 - w); + *ptr |= 1 << (15 - w); } ptr++; } -- cgit v1.2.3