/[rdesktop]/sourceforge.net/trunk/rdesktop/xwin.c
This is repository of my old source code which isn't updated any more. Go to git.rot13.org for current projects!
ViewVC logotype

Diff of /sourceforge.net/trunk/rdesktop/xwin.c

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 821 by jdmeijer, Mon Feb 28 01:15:45 2005 UTC revision 822 by stargo, Mon Feb 28 22:38:24 2005 UTC
# Line 764  translate24to32(const uint8 * data, uint Line 764  translate24to32(const uint8 * data, uint
764          if (g_arch_match)          if (g_arch_match)
765          {          {
766                  /* *INDENT-OFF* */                  /* *INDENT-OFF* */
767    #ifdef NEED_ALIGN
768                  REPEAT4                  REPEAT4
769                  (                  (
 #ifdef NEED_ALIGN  
770                          *(out++) = *(data++);                          *(out++) = *(data++);
771                          *(out++) = *(data++);                          *(out++) = *(data++);
772                          *(out++) = *(data++);                          *(out++) = *(data++);
773                          *(out++) = 0;                          *(out++) = 0;
774                    )
775  #else  #else
776                    REPEAT4
777                    (
778                          *((uint32 *) out) = *((uint32 *) data);                          *((uint32 *) out) = *((uint32 *) data);
779                          out += 4;                          out += 4;
780                          data += 3;                          data += 3;
 #endif  
781                  )                  )
782    #endif
783                  /* *INDENT-ON* */                  /* *INDENT-ON* */
784          }          }
785          else if (g_xserver_be)          else if (g_xserver_be)

Legend:
Removed from v.821  
changed lines
  Added in v.822

  ViewVC Help
Powered by ViewVC 1.1.26