Skip to content

Commit

Permalink
Removed a blank line.
Browse files Browse the repository at this point in the history
  • Loading branch information
ScorpionInc committed Apr 5, 2023
1 parent 1ca5b46 commit 1e3de1a
Showing 1 changed file with 0 additions and 1 deletion.
1 change: 0 additions & 1 deletion modules/bmp/image_loader_bmp.cpp
Expand Up @@ -80,7 +80,6 @@ Error ImageLoaderBMP::convert_to_image(Ref<Image> p_image,
vformat("4-bpp BMP images must have a width that is a multiple of 2, but the imported BMP is %d pixels wide.", int(width)));
ERR_FAIL_COND_V_MSG(height % 2 != 0, ERR_UNAVAILABLE,
vformat("4-bpp BMP images must have a height that is a multiple of 2, but the imported BMP is %d pixels tall.", int(height)));

}

// Image data (might be indexed)
Expand Down

0 comments on commit 1e3de1a

Please sign in to comment.