summaryrefslogtreecommitdiff
path: root/apps/plugins
diff options
context:
space:
mode:
Diffstat (limited to 'apps/plugins')
-rw-r--r--apps/plugins/lib/pluginlib_bmp.c10
1 files changed, 5 insertions, 5 deletions
diff --git a/apps/plugins/lib/pluginlib_bmp.c b/apps/plugins/lib/pluginlib_bmp.c
index 00c8cbbec0..8520a8b17f 100644
--- a/apps/plugins/lib/pluginlib_bmp.c
+++ b/apps/plugins/lib/pluginlib_bmp.c
@@ -35,8 +35,8 @@
35 */ 35 */
36int save_bmp_file( char* filename, struct bitmap *bm ) 36int save_bmp_file( char* filename, struct bitmap *bm )
37{ 37{
38 /* I'm not really sure about this one :) */ 38 int line_width = (bm->width*3+3) & ~3;
39 int line_width = bm->width*3+((bm->width*3)%4?4-((bm->width*3)%4):0); 39 int padsize = line_width - bm->width*3;
40 40
41 const unsigned char header[] = 41 const unsigned char header[] =
42 { 42 {
@@ -77,10 +77,10 @@ int save_bmp_file( char* filename, struct bitmap *bm )
77 }; 77 };
78 rb->write( fh, c, 3 ); 78 rb->write( fh, c, 3 );
79 } 79 }
80 for( x = 0; x < 3*bm->width - line_width; x++ ) 80 if(padsize != 0)
81 { 81 {
82 unsigned char c = 0; 82 unsigned int c = 0; /* padsize is at most 3. */
83 rb->write( fh, &c, 1 ); 83 rb->write( fh, &c, padsize );
84 } 84 }
85 } 85 }
86 rb->close( fh ); 86 rb->close( fh );