mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 22:28:10 +00:00
don't default to the slowest aspect ratio correcter; rather use the medium one (good quality with acceptable speed)
svn-id: r8715
This commit is contained in:
parent
f27b711e79
commit
621e356b42
@ -659,7 +659,7 @@ static inline uint16 interpolate5(uint16 A, uint16 B, int scale) {
|
||||
}
|
||||
|
||||
static inline void interpolate5Line(uint16 *dst, const uint16 *srcA, const uint16 *srcB, int scale, int width) {
|
||||
#if 1
|
||||
#if 0
|
||||
// Accurate but slightly slower code
|
||||
while (width--) {
|
||||
*dst++ = interpolate5(*srcA++, *srcB++, scale);
|
||||
|
Loading…
Reference in New Issue
Block a user