| version 1.10 | | version 1.11 |
|---|
| | |
| * 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 |
| * | | * |
| | |
| *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; |
| } | | } |
| } | | } |
| } | | } |