White space cleanup.

This commit is contained in:
riccardom 2009-01-12 22:39:51 +00:00
parent af7702bb20
commit aa62c44724
1 changed files with 3 additions and 3 deletions

View File

@ -590,9 +590,9 @@ gtk_init_sub_gl_area(GtkWidget *widget,
static inline void gpu_screen_to_rgb(u8 *rgb, int size)
{
for (int i = 0; i < size; i++) {
rgb[(i * 3) + 0] = ((*((u16 *)&GPU_screen[(i<<1)]) >> 0) & 0x1f) << 3;
rgb[(i * 3) + 1] = ((*((u16 *)&GPU_screen[(i<<1)]) >> 5) & 0x1f) << 3;
rgb[(i * 3) + 2] = ((*((u16 *)&GPU_screen[(i<<1)]) >> 10) & 0x1f) << 3;
rgb[(i*3)+0] = ((*((u16 *)&GPU_screen[(i<<1)]) >> 0) & 0x1f) << 3;
rgb[(i*3)+1] = ((*((u16 *)&GPU_screen[(i<<1)]) >> 5) & 0x1f) << 3;
rgb[(i*3)+2] = ((*((u16 *)&GPU_screen[(i<<1)]) >> 10) & 0x1f) << 3;
}
}