mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-09 05:05:20 -05:00
fix yellow - bogus unitialized use warnings
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@19376 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
a29b659758
commit
40ff47c7ee
1 changed files with 2 additions and 2 deletions
|
|
@ -396,10 +396,10 @@ static inline bool scale_nearest(struct bitmap *bm,
|
||||||
int ixls, xels, iyls, yelsi, oyls, yelso, p;
|
int ixls, xels, iyls, yelsi, oyls, yelso, p;
|
||||||
struct img_part *cur_part;
|
struct img_part *cur_part;
|
||||||
#ifndef HAVE_LCD_COLOR
|
#ifndef HAVE_LCD_COLOR
|
||||||
fb_data *dest, *dest_t;
|
fb_data *dest = dest, *dest_t;
|
||||||
#endif
|
#endif
|
||||||
#ifdef HAVE_REMOTE_LCD
|
#ifdef HAVE_REMOTE_LCD
|
||||||
fb_remote_data *rdest, *rdest_t;
|
fb_remote_data *rdest = rdest, *rdest_t;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
SDEBUGF("scale_nearest sw=%d sh=%d dw=%d dh=%d remote=%d\n", sw, sh, dw,
|
SDEBUGF("scale_nearest sw=%d sh=%d dw=%d dh=%d remote=%d\n", sw, sh, dw,
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue