From 119dcec3d619d2cf763dc91dba6e7ad6ff23aea6 Mon Sep 17 00:00:00 2001 From: Nicolas Bacca Date: Sun, 1 Dec 2002 23:28:11 +0000 Subject: Do not commit buggy debug code svn-id: r5800 --- backends/wince/screen.cpp | 7 ------- 1 file changed, 7 deletions(-) (limited to 'backends/wince') diff --git a/backends/wince/screen.cpp b/backends/wince/screen.cpp index 98df430e4a..67bd276035 100644 --- a/backends/wince/screen.cpp +++ b/backends/wince/screen.cpp @@ -863,19 +863,12 @@ void Blt(UBYTE * scr_ptr) void Blt_part(UBYTE * src_ptr, int x, int y, int width, int height, int pitch, bool check) { - if (check && (y > _geometry_h || (y + height) > _geometry_h)) - return; - if (toolbar_available && !toolbar_drawn && !hide_toolbar) drawAllToolbar(); pBlt_part(src_ptr, x, y, width, height, NULL, pitch); if (check && (y > _geometry_h || (y + height) > _geometry_h)) { - char message[100]; - sprintf(message, "Override geometry : h %d y %d height %d", _geometry_h, y, height); - drawError(message); - exit(1); toolbar_drawn = false; } -- cgit v1.2.3