; Minor fix of recent change in fringe.c
* src/fringe.c (init_fringe_bitmap) [HAVE_NTGUI]: Remove an unnecessary #ifdef introduced in a recent change.
This commit is contained in:
parent
35acb3950f
commit
f03d936cd7
1 changed files with 2 additions and 2 deletions
|
@ -1456,9 +1456,9 @@ init_fringe_bitmap (int which, struct fringe_bitmap *fb, int once_p)
|
|||
{
|
||||
unsigned short b = *bits;
|
||||
b <<= (16 - fb->width);
|
||||
#ifndef WORDS_BIGENDIAN
|
||||
/* Windows is little-endian, so the next line is always
|
||||
needed. */
|
||||
b = ((b >> 8) | (b << 8));
|
||||
#endif
|
||||
*bits++ = b;
|
||||
}
|
||||
#endif
|
||||
|
|
Loading…
Add table
Reference in a new issue