1
0
Fork 0
mirror of https://github.com/transmission/transmission synced 2024-12-24 00:34:04 +00:00

Update 2006-01-04

This commit is contained in:
Eric Petit 2006-01-12 19:04:45 +00:00
parent a850cd6910
commit a1de0a4fa0

View file

@ -172,7 +172,7 @@ static uint32_t kGreen[] =
{ {
for( w = 0; w < end; w++ ) for( w = 0; w < end; w++ )
{ {
p[w] = colors[h]; p[w] = htonl( colors[h] );
} }
p += pixelsPerRow; p += pixelsPerRow;
} }
@ -204,7 +204,7 @@ static uint32_t kGreen[] =
{ {
for( w = 0; w < end; w++ ) for( w = 0; w < end; w++ )
{ {
p[w] = kBlue4[h]; p[w] = htonl( kBlue4[h] );
} }
p += pixelsPerRow; p += pixelsPerRow;
} }
@ -242,7 +242,7 @@ static uint32_t kGreen[] =
for( h = 2; h < 14; h++ ) for( h = 2; h < 14; h++ )
{ {
p[0] = colors[h]; p[0] = htonl( colors[h] );
p += pixelsPerRow; p += pixelsPerRow;
} }
} }