diff options
| author | Franklin Wei <git@fwei.tk> | 2018-06-12 12:11:06 -0400 |
|---|---|---|
| committer | Franklin Wei <git@fwei.tk> | 2018-06-12 12:11:06 -0400 |
| commit | f727b0787acc270fa7d0c9ebef6c853d08270005 (patch) | |
| tree | c197bb52c23e886fbeeea0b55c5d6e65152bd8f3 /apps/plugins | |
| parent | c2d5ac17623dd4a0143b884cc8d80905119e10ba (diff) | |
| download | rockbox-f727b0787acc270fa7d0c9ebef6c853d08270005.zip rockbox-f727b0787acc270fa7d0c9ebef6c853d08270005.tar.gz rockbox-f727b0787acc270fa7d0c9ebef6c853d08270005.tar.bz2 rockbox-f727b0787acc270fa7d0c9ebef6c853d08270005.tar.xz | |
puzzles: minor nitpicks to fbb6a2f
Just some whitespace changes to maintain stylistic consistency.
Change-Id: I50b5d52db2795cfcb4155bdffbfb80c1c3773112
Diffstat (limited to 'apps/plugins')
| -rw-r--r-- | apps/plugins/puzzles/rockbox.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/apps/plugins/puzzles/rockbox.c b/apps/plugins/puzzles/rockbox.c index a42a9db..231df5a 100644 --- a/apps/plugins/puzzles/rockbox.c +++ b/apps/plugins/puzzles/rockbox.c @@ -182,7 +182,7 @@ static void zoom_drawpixel(int x, int y) zoom_fb[y * zoom_w + x].b = RGB_UNPACK_BLUE(pix); zoom_fb[y * zoom_w + x].g = RGB_UNPACK_GREEN(pix); zoom_fb[y * zoom_w + x].r = RGB_UNPACK_RED(pix); - zoom_fb[y * zoom_w + x].x = 255; + zoom_fb[y * zoom_w + x].x = 255; #elif LCD_DEPTH == 24 /* I hate these */ unsigned int pix = rb->lcd_get_foreground(); @@ -215,7 +215,7 @@ static void zoom_hline(int l, int r, int y) RGB_UNPACK_GREEN(rb->lcd_get_foreground()), RGB_UNPACK_RED(rb->lcd_get_foreground()), 255 - }; + }; #elif LCD_DEPTH == 24 fb_data pixel = { RGB_UNPACK_BLUE(rb->lcd_get_foreground()), RGB_UNPACK_GREEN(rb->lcd_get_foreground()), |