diff options
-rw-r--r-- | apps/plugins/sliding_puzzle.c | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/plugins/sliding_puzzle.c b/apps/plugins/sliding_puzzle.c index 3c8a175119..1510c0b417 100644 --- a/apps/plugins/sliding_puzzle.c +++ b/apps/plugins/sliding_puzzle.c @@ -295,7 +295,11 @@ static bool load_resize_bitmap(void) FORMAT_NATIVE ); if( rc > 0 ) { +#ifdef HAVE_LCD_COLOR smooth_resize_bitmap( &temp_bitmap, &main_bitmap ); +#else + simple_resize_bitmap( &temp_bitmap, &main_bitmap ); +#endif puzzle_bmp_ptr = (const fb_data *)img_buf; rb->strcpy( img_buf_path, filename ); return true; |