warn instead of fatal if bitmap is incompatible.
authorFelix Domke <tmbinc@elitedvb.net>
Thu, 12 Apr 2007 19:46:44 +0000 (19:46 +0000)
committerFelix Domke <tmbinc@elitedvb.net>
Thu, 12 Apr 2007 19:46:44 +0000 (19:46 +0000)
lib/gdi/gpixmap.cpp

index 96b599b..d0eff03 100644 (file)
@@ -361,7 +361,7 @@ void gPixmap::blit(const gPixmap &src, ePoint pos, const gRegion &clip, int flag
                                dstptr+=surface->stride;
                        }
                } else
-                       eFatal("cannot blit %dbpp from %dbpp", surface->bpp, src.surface->bpp);
+                       eWarning("cannot blit %dbpp from %dbpp", surface->bpp, src.surface->bpp);
        }
 }