mirror of
https://github.com/Rockbox/rockbox.git
synced 2025-12-08 12:45:26 -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;
|
||||
struct img_part *cur_part;
|
||||
#ifndef HAVE_LCD_COLOR
|
||||
fb_data *dest, *dest_t;
|
||||
fb_data *dest = dest, *dest_t;
|
||||
#endif
|
||||
#ifdef HAVE_REMOTE_LCD
|
||||
fb_remote_data *rdest, *rdest_t;
|
||||
fb_remote_data *rdest = rdest, *rdest_t;
|
||||
#endif
|
||||
|
||||
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