1
0
Fork 0
forked from len0rd/rockbox

Fix the comment, read_bmp_file() returns >=0 for success, not 0

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13104 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Jonathan Gordon 2007-04-11 05:35:58 +00:00
parent 60fed9aeb6
commit 42c46dad58

View file

@ -26,7 +26,8 @@
* read_bmp_file() * read_bmp_file()
* *
* Reads a 8bit BMP file and puts the data in a 1-pixel-per-byte * Reads a 8bit BMP file and puts the data in a 1-pixel-per-byte
* array. Returns 0 on success. * array.
* Returns < 0 for error, or number of bytes used from the bitmpa buffer
* *
**********************************************/ **********************************************/
int read_bmp_file(char* filename, int read_bmp_file(char* filename,