Difference for 2d/bitblt.c from version 1.10 to 1.11


version 1.10 version 1.11
Line 19
 
Line 19
  * Routines for bitblt's.   * Routines for bitblt's.
  *   *
  * $Log$   * $Log$
    * Revision 1.11  2004/11/10 22:37:06  donut
    * fix NO_ASM build with gcc-3.3
    *
  * Revision 1.10  2003/03/09 06:34:08  donut   * Revision 1.10  2003/03/09 06:34:08  donut
  * change byte typedef to sbyte to avoid conflict with win32 byte which is unsigned   * change byte typedef to sbyte to avoid conflict with win32 byte which is unsigned
  *   *
Line 195
 
Line 198
  *dest++=*source++;   *dest++=*source++;
  else {   else {
  c=*source++;   c=*source++;
  *((unsigned short *)dest)++=((short)c<<8)|(short)c;   *((unsigned short *)dest)=((short)c<<8)|(short)c;
    dest+=2;
  }   }
  }   }
 }  }

Legend:
line(s) removed in v.1.10 
line(s) changed
 line(s) added in v.1.11