Opened 22 years ago

Closed 22 years ago

#260 closed defect

Fixed black lines on distaff in Loom

Reported by: (none) Owned by: SF/ender
Priority: normal Component: Engine: SCUMM
Version: Keywords:
Cc: Game: Loom

Description

After several hours of looking through and debugging scummvm (and having learned a lot about how it works), I found the problem that causes black lines on the distaff when you play notes in Loom.

The right and bottom boundaries of verbs need to be 1 pixel smaller than their width and height, for example a 16X16 square should draw on pixels 0-15 instead of 0- 16 as it does with the current code.

in verbs.cpp, line 241 change: vst->right = vst->x + imgw * 8; vst->bottom = vst->y + imgh * 8;

to

vst->right = vst->x + imgw * 8 - 1; vst->bottom = vst->y + imgh * 8 - 1;

This might also fix/break things in other games, but I didn't see any problems after trying MI1 and 2.

CCCP

PS - I'll be doing more bug hunting later, should I submit new fixes in the bugs or patches section?

Ticket imported from: #556154. Ticket imported from: bugs/260.

Change History (3)

comment:1 by SF/inguin, 22 years ago

That could explain (and solve) another tiny bug I noticed throughout all games (except Sam&Max, because there are no verbs to click): If you are on the top pixel line of some verb, the verb above it gets selected. Same for the leftmost pixel column and the verb left of it. It's most obvious in Indy4, for there are those frames around the verbs.

comment:2 by SF/ender, 22 years ago

Owner: set to SF/ender
Status: newclosed

comment:3 by SF/ender, 22 years ago

Yeah, this makes sense and will be applied shortly.

Obviously a 16x16 pixel image will be 0-15 pixels wide... not 0-16, which would be 17x17. DOH! :)

Future patches should go to the Patch section, obviously, not the bug tracker.

Thanks :)

Note: See TracTickets for help on using tickets.