mirror of
https://github.com/apache/nuttx-apps.git
synced 2026-08-02 12:49:03 +00:00
Fix loop terminatin value
git-svn-id: svn://svn.code.sf.net/p/nuttx/code/trunk@3806 42af7a65-404d-4744-a932-0658087f49c3
This commit is contained in:
parent
d419019bc0
commit
2ba9ffc823
1 changed files with 1 additions and 1 deletions
|
|
@ -1238,7 +1238,7 @@ void nximage_blitrow(FAR nxgl_mxpixel_t *run, FAR const void **state)
|
|||
last = nximage_bgcolor();
|
||||
#endif
|
||||
|
||||
for (width = 0; width < IMAGE_WIDTH; pos++)
|
||||
for (width = 0; width < SCALED_WIDTH; pos++)
|
||||
{
|
||||
nrun = (unsigned int)pos->npix;
|
||||
color = g_rgblut[pos->code];
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue