Christian Heimke commited on 2011-07-15 09:02:16
Showing 11 changed files, with 19 additions and 14 deletions.
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLib |
2 |
- * version 0.3 date 2005-02-16 |
|
2 |
+ * version 0.3.1 date 2005-03-05 |
|
3 | 3 |
* Copyright 2004-2005 Stefan Schuermans <1stein@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
... | ... |
@@ -20,7 +20,7 @@ int main( int argCnt, char * * args ) |
20 | 20 |
|
21 | 21 |
//print info |
22 | 22 |
printf( "BlinkenLib - BlinkenConv\n" |
23 |
- "version 0.3 date 2005-02-16\n" |
|
23 |
+ "version 0.3.1 date 2005-03-05\n" |
|
24 | 24 |
"Copyright 2004-2005 Stefan Schuermans <1stein@schuermans.info>\n" |
25 | 25 |
"Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html\n" |
26 | 26 |
"a blinkenarea.org project\n" |
... | ... |
@@ -1,5 +1,5 @@ |
1 | 1 |
/* BlinkenLib |
2 |
- * version 0.3 date 2005-02-16 |
|
2 |
+ * version 0.3.1 date 2005-03-05 |
|
3 | 3 |
* Copyright 2004-2005 Stefan Schuermans <1stein@schuermans.info> |
4 | 4 |
* Copyleft: GNU public license - http://www.gnu.org/copyleft/gpl.html |
5 | 5 |
* a blinkenarea.org project |
... | ... |
@@ -755,9 +755,9 @@ stBlinkenMovie * BlinkenMovieLoadBml( char * pFilename ) |
755 | 755 |
//get attributes |
756 | 756 |
width = 0; |
757 | 757 |
height = 0; |
758 |
- channels = 0; |
|
759 |
- bits = 0; |
|
760 |
- maxval = 0; |
|
758 |
+ channels = 1; |
|
759 |
+ bits = 4; |
|
760 |
+ maxval = 15; |
|
761 | 761 |
if( (ptr = strstr( buffer, "height=\"" )) != NULL ) //height |
762 | 762 |
sscanf( ptr+8, "%u", &height ); |
763 | 763 |
if( (ptr = strstr( buffer, "width=\"" )) != NULL ) //width |