Rectangle followup

It seems as though it does work when the background bmp is the same size
as the screen, but not when the screen is smaller than the background
bmp:

e.g.
Screen = 320 x 200
background bmp = 321 x 201

It seems as though it does work when the background bmp is the same size
as the screen, but not when the screen is smaller than the background
bmp:

e.g.
Screen = 320 x 200
background bmp = 321 x 201

That’s correct, the blit fails. It should probably clip, but I’d need
to check the code just to make sure of what’s actually going on.
Most likely your blit specifies a source with of 321 and a destination
width of 320, which is illegal since SDL doesn’t support stretch blits.

-Sam Lantinga				(slouken at devolution.com)

Lead Programmer, Loki Entertainment Software–
“Any sufficiently advanced bug is indistinguishable from a feature”
– Rich Kulawiec