diff options
author | DeeJayLSP <djlsplays@gmail.com> | 2022-10-28 15:17:49 -0300 |
---|---|---|
committer | DeeJayLSP <djlsplays@gmail.com> | 2022-10-28 15:17:49 -0300 |
commit | dd64ceab47a30870ed9fb7c7e3cdfebdea60a50a (patch) | |
tree | c5c19794d5e9bb6a912a1421f1901ca2fde11935 /modules/webp/webp_common.cpp | |
parent | 999df8cdbfb73286aed661699361de91766e68cc (diff) | |
download | redot-engine-dd64ceab47a30870ed9fb7c7e3cdfebdea60a50a.tar.gz |
Change all WEBP strings and comments to WebP
Diffstat (limited to 'modules/webp/webp_common.cpp')
-rw-r--r-- | modules/webp/webp_common.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/modules/webp/webp_common.cpp b/modules/webp/webp_common.cpp index 049c1c3a32..c6440f1796 100644 --- a/modules/webp/webp_common.cpp +++ b/modules/webp/webp_common.cpp @@ -139,7 +139,7 @@ Ref<Image> _webp_unpack(const Vector<uint8_t> &p_buffer) { ERR_FAIL_COND_V(r[0] != 'R' || r[1] != 'I' || r[2] != 'F' || r[3] != 'F' || r[8] != 'W' || r[9] != 'E' || r[10] != 'B' || r[11] != 'P', Ref<Image>()); WebPBitstreamFeatures features; if (WebPGetFeatures(r, size, &features) != VP8_STATUS_OK) { - ERR_FAIL_V_MSG(Ref<Image>(), "Error unpacking WEBP image."); + ERR_FAIL_V_MSG(Ref<Image>(), "Error unpacking WebP image."); } Vector<uint8_t> dst_image; |