diff options
author | Jens Arnold <amiconn@rockbox.org> | 2006-02-27 21:59:48 +0000 |
---|---|---|
committer | Jens Arnold <amiconn@rockbox.org> | 2006-02-27 21:59:48 +0000 |
commit | 9b1c9db66e1c9c0fc55164ca6e7cf1b95399a7ca (patch) | |
tree | 1d81837ecca0b00a137c97011147e91fcb244af6 /tools | |
parent | 55a7a5c060e4f0af5753dd3d0e637e1f789a3e58 (diff) | |
download | rockbox-9b1c9db66e1c9c0fc55164ca6e7cf1b95399a7ca.tar.gz rockbox-9b1c9db66e1c9c0fc55164ca6e7cf1b95399a7ca.zip |
Fix stupid padded width calculation bug.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@8862 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'tools')
-rw-r--r-- | tools/bmp2rb.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/bmp2rb.c b/tools/bmp2rb.c index 16bf7d9633..8de6ab2b56 100644 --- a/tools/bmp2rb.c +++ b/tools/bmp2rb.c @@ -159,7 +159,7 @@ int read_bmp_file(char* filename, width = readint(&fh.Width); height = readint(&fh.Height); - padded_width = (width * depth / 8 + 3) & ~3; /* aligned 4-bytes boundaries */ + padded_width = ((width * depth + 31) / 8) & ~3; /* aligned 4-bytes boundaries */ size = padded_width * height; /* read this many bytes */ bmp = (unsigned char *)malloc(size); |