mirror of
https://github.com/libretro/scummvm.git
synced 2024-12-15 06:08:35 +00:00
Fixed compilation on BE systems
svn-id: r43995
This commit is contained in:
parent
876a7b657f
commit
10dd604d0a
@ -265,7 +265,7 @@ void gfx_crossblit_pixmap(gfx_mode_t *mode, gfx_pixmap_t *pxm, int priority, rec
|
||||
}
|
||||
|
||||
#ifdef SCUMM_BIG_ENDIAN
|
||||
alpha += (mode->bytespp) - (shift_nr + 1);
|
||||
alpha += 1 - (shift_nr + 1);
|
||||
#else
|
||||
alpha += shift_nr;
|
||||
#endif
|
||||
|
Loading…
Reference in New Issue
Block a user