mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-11 19:54:03 +00:00
Fix bug which led to an endless loop if 1.5x scaler is fed with odd value.
svn-id: r17003
This commit is contained in:
parent
d65d958593
commit
e4bd258fd6
@ -184,7 +184,7 @@ void Normal1o5xTemplate(const uint8 *srcPtr, uint32 srcPitch, uint8 *dstPtr, uin
|
||||
const uint32 srcPitch2 = srcPitch * 2;
|
||||
|
||||
assert(((int)dstPtr & 1) == 0);
|
||||
while (height) {
|
||||
while (height > 0) {
|
||||
r = dstPtr;
|
||||
for (int i = 0; i < width; i += 2, r += 6) {
|
||||
uint16 color0 = *(((const uint16 *)srcPtr) + i);
|
||||
|
Loading…
Reference in New Issue
Block a user