aboutsummaryrefslogtreecommitdiff
path: root/plugins/gpu_unai/gpu.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/gpu_unai/gpu.cpp')
-rw-r--r--plugins/gpu_unai/gpu.cpp21
1 files changed, 12 insertions, 9 deletions
diff --git a/plugins/gpu_unai/gpu.cpp b/plugins/gpu_unai/gpu.cpp
index 5a0ad2c..3c30ffa 100644
--- a/plugins/gpu_unai/gpu.cpp
+++ b/plugins/gpu_unai/gpu.cpp
@@ -861,19 +861,22 @@ static void blit(void)
if (isRGB24)
{
-#ifndef MAEMO
- for (; h1-- > 0; dest += w0 * 3, fb_offs += 1024)
+ if (!cbs->only_16bpp)
{
- fb_offs &= 1024*512-1;
- bgr888_to_rgb888(dest, base + fb_offs, w0 * 3);
+ for (; h1-- > 0; dest += w0 * 3, fb_offs += 1024)
+ {
+ fb_offs &= 1024*512-1;
+ bgr888_to_rgb888(dest, base + fb_offs, w0 * 3);
+ }
}
-#else
- for (; h1-- > 0; dest += w0 * 2, fb_offs += 1024)
+ else
{
- fb_offs &= 1024*512-1;
- bgr888_to_rgb565(dest, base + fb_offs, w0 * 3);
+ for (; h1-- > 0; dest += w0 * 2, fb_offs += 1024)
+ {
+ fb_offs &= 1024*512-1;
+ bgr888_to_rgb565(dest, base + fb_offs, w0 * 3);
+ }
}
-#endif
}
else
{