mirror of
https://github.com/tuxbox-fork-migrations/recycled-ni-neutrino.git
synced 2025-08-26 23:13:00 +02:00
fb_accel_cs_hd1: fix compile warning
Origin commit data
------------------
Branch: ni/coolstream
Commit: 0053e522a9
Author: vanhofen <vanhofen@gmx.de>
Date: 2019-02-03 (Sun, 03 Feb 2019)
Origin message was:
------------------
- fb_accel_cs_hd1: fix compile warning
------------------
No further description and justification available within origin commit message!
------------------
This commit was generated by Migit
This commit is contained in:
@@ -288,9 +288,9 @@ void CFbAccelCSHD1::blit2FB(void *fbbuff, uint32_t width, uint32_t height, uint3
|
||||
yc = (height > yRes) ? yRes : height;
|
||||
|
||||
//NI
|
||||
if (unscaled_w != 0 && (int)unscaled_w < xc)
|
||||
if (unscaled_w != 0 && unscaled_w < xc)
|
||||
xc = unscaled_w;
|
||||
if (unscaled_h != 0 && (int)unscaled_h < yc)
|
||||
if (unscaled_h != 0 && unscaled_h < yc)
|
||||
yc = unscaled_h;
|
||||
|
||||
u32 cmd;
|
||||
|
Reference in New Issue
Block a user