fixed line counter variable used when reporting errors while parsing .res files. The variable lineCnt is initialized to 1 but it gets incremented before being used to display potential errors while parsing a line;
improved clarity of console messages by using println instead of print. This avoids some confusion when reading console messages like this:
--> executing plugin SPRITE...Info: 'spr_face_dead_palette_data' has same content as 'spr_rect_bb_palette_data'
.res
files. The variablelineCnt
is initialized to 1 but it gets incremented before being used to display potential errors while parsing a line;println
instead ofprint
. This avoids some confusion when reading console messages like this:--> executing plugin SPRITE...Info: 'spr_face_dead_palette_data' has same content as 'spr_rect_bb_palette_data'