neutrino: fix artefacts with scaling framebuffer and 1080i

Origin commit data
------------------
Commit: 1182430ac3
Author: Stefan Seyfried <seife@tuxbox-git.slipkontur.de>
Date: 2012-03-10 (Sat, 10 Mar 2012)
This commit is contained in:
Stefan Seyfried
2012-03-10 13:54:24 +01:00
parent 333d4bd8fe
commit c6866194b7
5 changed files with 43 additions and 10 deletions

View File

@@ -996,7 +996,7 @@ void CMenuWidget::saveScreen()
delete[] background;
background = new fb_pixel_t [full_width * full_height];
background = new fb_pixel_t [frameBuffer->scaleX(full_width) * frameBuffer->scaleY(full_height)];
if(background)
frameBuffer->SaveScreen(x, y, full_width, full_height, background);
}