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:
vanhofen
2019-02-03 21:34:35 +01:00
parent e19bd1688c
commit 04dbe2ab76

View File

@@ -288,9 +288,9 @@ void CFbAccelCSHD1::blit2FB(void *fbbuff, uint32_t width, uint32_t height, uint3
yc = (height > yRes) ? yRes : height; yc = (height > yRes) ? yRes : height;
//NI //NI
if (unscaled_w != 0 && (int)unscaled_w < xc) if (unscaled_w != 0 && unscaled_w < xc)
xc = unscaled_w; xc = unscaled_w;
if (unscaled_h != 0 && (int)unscaled_h < yc) if (unscaled_h != 0 && unscaled_h < yc)
yc = unscaled_h; yc = unscaled_h;
u32 cmd; u32 cmd;