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 96b599be60c8a26831781e29f278229c5c09e9e1..d0eff03f00f40d7f5a937f5e2a3bd9b6471346dc 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);
        }
 }