commit a5be04a36453061569485ffab43140eba1bec987
parent 8d2802b81e3af84e61c639ccfefe2d9bf6774f16
Author: ByteProject <stefan.vogt@byteproject.net>
Date: Sat, 25 Feb 2012 13:32:10 +0100
Merge branch 'master' of github.com:ByteProject/AnsiLove-C
Diffstat:
1 file changed, 2 insertions(+), 2 deletions(-)
diff --git a/ansilove/ansilove.c b/ansilove/ansilove.c
@@ -2225,7 +2225,7 @@ void alXbinLoader(char *input, char output[], char bits[])
// read compressed xbin
if( (xbin_flags & 4) == 4) {
- while(offset < input_file_size && input_file_buffer[ offset ] != 0x26 )
+ while(offset < input_file_size && input_file_buffer[ offset ] != 0x1A )
{
int32_t ctype = input_file_buffer[ offset ] & 0xC0;
int32_t counter = ( input_file_buffer[ offset ] & 0x3F ) + 1;
@@ -2289,7 +2289,7 @@ void alXbinLoader(char *input, char output[], char bits[])
}
// read uncompressed xbin
else {
- while(offset < input_file_size && input_file_buffer[ offset ] != 0x26 )
+ while(offset < input_file_size && input_file_buffer[ offset ] != 0x1A )
{
if (position_x == xbin_width)
{