summaryrefslogtreecommitdiff
path: root/apps/plugins/rockboy/fb.h
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins/rockboy/fb.h')
-rw-r--r--apps/plugins/rockboy/fb.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/plugins/rockboy/fb.h b/apps/plugins/rockboy/fb.h
index 97aeb425a0..96de665d14 100644
--- a/apps/plugins/rockboy/fb.h
+++ b/apps/plugins/rockboy/fb.h
@@ -10,15 +10,15 @@
10 10
11struct fb 11struct fb
12{ 12{
13 fb_data *ptr; 13#ifdef HAVE_LCD_COLOR
14 struct 14 struct
15 { 15 {
16 int l, r; 16 int l, r;
17 } cc[3]; 17 } cc[3];
18 int enabled; 18#else
19#if !defined(HAVE_LCD_COLOR)
20 int mode; 19 int mode;
21#endif 20#endif
21 int enabled;
22}; 22};
23 23
24 24