View | Details | Raw Unified | Return to bug 130202
Collapse All | Expand All

(-)src.orig/engine/said.y (-1 / +1 lines)
Lines 441-447 Link Here
441
	}
441
	}
442
442
443
	if (said_blessed != 1) {
443
	if (said_blessed != 1) {
444
		sciprintf("Error: Found %d top branches\n");
444
		sciprintf("Error: Found %d top branches\n", said_blessed);
445
		return 1;
445
		return 1;
446
	}
446
	}
447
447
(-)src.orig/gfx/resource/sci_view_1.c (-1 / +1 lines)
Lines 205-211 Link Here
205
		int loop_offset = get_uint_16(resource + V1_FIRST_LOOP_OFFSET + (i << 1));
205
		int loop_offset = get_uint_16(resource + V1_FIRST_LOOP_OFFSET + (i << 1));
206
206
207
		if (loop_offset >= size) {
207
		if (loop_offset >= size) {
208
			GFXERROR("View %04x:(%d) supposed to be at illegal offset 0x%04x\n", id, i);
208
			GFXERROR("View %04x:(%d) supposed to be at illegal offset 0x%04x\n", id, i, loop_offset);
209
			error_token = 1;
209
			error_token = 1;
210
		}
210
		}
211
211

Return to bug 130202