diff options
| -rw-r--r-- | scumm/cursor.cpp | 2 | 
1 files changed, 1 insertions, 1 deletions
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++;  	}  | 
