mirror of
https://github.com/isledecomp/isle.git
synced 2026-05-03 05:23:57 +00:00
Match lower, but jumps almost correct
This commit is contained in:
parent
e66d9ba0d6
commit
ab766b325a
@ -410,6 +410,7 @@ void DecodeSS2(LPBITMAPINFOHEADER p_bitmapHeader, BYTE* p_pixelData, BYTE* p_dat
|
||||
return;
|
||||
// TODO: Something is off about these breaks and jumps -- too many JMP instructions
|
||||
}
|
||||
}
|
||||
// }
|
||||
|
||||
column_loop_2:
|
||||
@ -432,7 +433,7 @@ void DecodeSS2(LPBITMAPINFOHEADER p_bitmapHeader, BYTE* p_pixelData, BYTE* p_dat
|
||||
}
|
||||
row--;
|
||||
if (--lines > 0) {
|
||||
continue;
|
||||
goto row_loop;
|
||||
}
|
||||
return;
|
||||
}
|
||||
@ -448,11 +449,11 @@ void DecodeSS2(LPBITMAPINFOHEADER p_bitmapHeader, BYTE* p_pixelData, BYTE* p_dat
|
||||
}
|
||||
row--;
|
||||
if (--lines > 0) {
|
||||
continue;
|
||||
goto row_loop;
|
||||
}
|
||||
return;
|
||||
}
|
||||
}
|
||||
// }
|
||||
}
|
||||
|
||||
// FUNCTION: LEGO1 0x100bdc00
|
||||
|
||||
Loading…
Reference in New Issue
Block a user