From d316a045dabd13615f674a22793b6925c9018f78 Mon Sep 17 00:00:00 2001 From: Robert Reif Date: Mon, 18 Aug 2003 19:53:23 +0000 Subject: [PATCH] Fixed Warblade image loading. --- dlls/oleaut32/olepicture.c | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/dlls/oleaut32/olepicture.c b/dlls/oleaut32/olepicture.c index d2cb70b8743..f167c495fb5 100644 --- a/dlls/oleaut32/olepicture.c +++ b/dlls/oleaut32/olepicture.c @@ -810,7 +810,9 @@ static boolean _jpeg_fill_input_buffer(j_decompress_ptr cinfo) { } static void _jpeg_skip_input_data(j_decompress_ptr cinfo,long num_bytes) { - ERR("(%ld), should not get here.\n",num_bytes); + TRACE("Skipping %ld bytes...\n", num_bytes); + cinfo->src->next_input_byte += num_bytes; + cinfo->src->bytes_in_buffer -= num_bytes; } static boolean _jpeg_resync_to_restart(j_decompress_ptr cinfo, int desired) {