summaryrefslogtreecommitdiffhomepage
path: root/src/Bitmap.hs
diff options
context:
space:
mode:
Diffstat (limited to 'src/Bitmap.hs')
-rw-r--r--src/Bitmap.hs11
1 files changed, 8 insertions, 3 deletions
diff --git a/src/Bitmap.hs b/src/Bitmap.hs
index c512ff2..9df2f67 100644
--- a/src/Bitmap.hs
+++ b/src/Bitmap.hs
@@ -46,9 +46,14 @@ loadBitmap d w p = do
exist <- doesFileExist p
if exist
then do
- (bw, bh, bp, _, _) <- readBitmapFile d w p
- addFinalizer bp (freePixmap d bp)
- return $ Just $ Bitmap bw bh bp
+ bmap <- readBitmapFile d w p
+ case bmap of
+ Right (bw, bh, bp, _, _) -> do
+ addFinalizer bp (freePixmap d bp)
+ return $ Just $ Bitmap bw bh bp
+ Left err -> do
+ putStrLn err
+ return Nothing
else
return Nothing