mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-09-11 07:30:57 +02:00
framebuffer: fix unscaled paintings; this fixes our starbar
Origin commit data
------------------
Commit: f6f1a71b39
Author: vanhofen <vanhofen@gmx.de>
Date: 2017-03-28 (Tue, 28 Mar 2017)
Origin message was:
------------------
- framebuffer: fix unscaled paintings; this fixes our starbar
This commit is contained in:
@@ -169,6 +169,12 @@ void CFbAccelCSHD2::blit2FB(void *fbbuff, uint32_t width, uint32_t height, uint3
|
||||
xc = (width > xRes) ? xRes : width;
|
||||
yc = (height > yRes) ? yRes : height;
|
||||
|
||||
//NI
|
||||
if (unscaled_w != 0 && (int)unscaled_w < xc)
|
||||
xc = unscaled_w;
|
||||
if (unscaled_h != 0 && (int)unscaled_h < yc)
|
||||
yc = unscaled_h;
|
||||
|
||||
if(!(width%4)) {
|
||||
fb_image image;
|
||||
image.dx = xoff;
|
||||
|
Reference in New Issue
Block a user