fix indent

This commit is contained in:
Fumitoshi UKAI
2003-07-07 15:49:03 +00:00
parent 0bbf6748bb
commit 851c96514f
3 changed files with 27 additions and 25 deletions

View File

@@ -1,4 +1,4 @@
/* $Id: fb.c,v 1.10 2003/07/07 15:48:17 ukai Exp $ */
/* $Id: fb.c,v 1.11 2003/07/07 15:49:39 ukai Exp $ */
/**************************************************************************
fb.c 0.3 Copyright (C) 2002, hito
**************************************************************************/
@@ -380,8 +380,8 @@ fb_clear(int x, int y, int w, int h, int r, int g, int b)
offset_fb = fscinfo.line_length * y + pixel_size * x;
bg = ((r >> (CHAR_BIT - vscinfo.red.length)) << vscinfo.red.offset) +
((g >> (CHAR_BIT - vscinfo.green.length)) << vscinfo.green.offset) +
((b >> (CHAR_BIT - vscinfo.blue.length)) << vscinfo.blue.offset);
((g >> (CHAR_BIT - vscinfo.green.length)) << vscinfo.green.offset) +
((b >> (CHAR_BIT - vscinfo.blue.length)) << vscinfo.blue.offset);
for (i = 0; i < h; i++) {
memcpy(buf + offset_fb, bg, pixel_size * w);
offset_fb += fscinfo.line_length;