--- psiconv/trunk/lib/psiconv/parse_layout.c 1999/10/03 21:10:47 2 +++ psiconv/trunk/lib/psiconv/parse_layout.c 2000/12/13 16:30:21 63 @@ -1,6 +1,6 @@ /* parse_layout.c - Part of psiconv, a PSION 5 file formats converter - Copyright (c) 1999 Frodo Looijaard + Copyright (c) 1999, 2000 Frodo Looijaard This program is free software; you can redistribute it and/or modify it under the terms of the GNU General Public License as published by @@ -541,6 +541,16 @@ res |= psiconv_parse_font(buf,lev+3,off+len, &leng, &result->font); len += leng; break; + case 0x24: + psiconv_progress(lev+3,off+len, + "Going to read unknown code 0x24 (%02x expected)", 0); + temp = psiconv_read_u8(buf,lev+3,off+len); + if (temp != 0) { + psiconv_warn(lev+3,off+len, + "Unknown code 0x24 value != 0x0 (0x%02x)", temp); + } + len ++; + break; default: psiconv_warn(lev+3,off+len,"Unknown code in character layout list"); psiconv_debug(lev+3,off+len,"Code: %02x",id);