diff options
author | Abdou-31 <abdou31.coding@gmail.com> | 2022-11-09 17:57:19 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2022-11-09 11:57:19 -0500 |
commit | d1b80b462eaa74a8640cf132c21f74e4f924052a (patch) | |
tree | d5804214487f339643ab6cdf74fbd113cb02cb2b /src/client/tile.cpp | |
parent | 6191bafcadc21277be5527ed1ac05f7902e710ad (diff) | |
download | minetest-d1b80b462eaa74a8640cf132c21f74e4f924052a.tar.xz |
Fix typos and en_US/en_GB inconsistency in various files (#12902)
Diffstat (limited to 'src/client/tile.cpp')
-rw-r--r-- | src/client/tile.cpp | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/client/tile.cpp b/src/client/tile.cpp index 133b0376f..0336bd82a 100644 --- a/src/client/tile.cpp +++ b/src/client/tile.cpp @@ -516,7 +516,7 @@ u32 TextureSource::getTextureId(const std::string &name) return 0; } -// Draw an image on top of an another one, using the alpha channel of the +// Draw an image on top of another one, using the alpha channel of the // source image static void blit_with_alpha(video::IImage *src, video::IImage *dst, v2s32 src_pos, v2s32 dst_pos, v2u32 size); @@ -1854,7 +1854,7 @@ static inline video::SColor blitPixel(const video::SColor &src_c, const video::S } /* - Draw an image on top of an another one, using the alpha channel of the + Draw an image on top of another one, using the alpha channel of the source image This exists because IImage::copyToWithAlpha() doesn't seem to always @@ -1878,7 +1878,7 @@ static void blit_with_alpha(video::IImage *src, video::IImage *dst, } /* - Draw an image on top of an another one, using the alpha channel of the + Draw an image on top of another one, using the alpha channel of the source image; only modify fully opaque pixels in destinaion */ static void blit_with_alpha_overlay(video::IImage *src, video::IImage *dst, @@ -1905,7 +1905,7 @@ static void blit_with_alpha_overlay(video::IImage *src, video::IImage *dst, // Feel free to re-enable if you find it handy. #if 0 /* - Draw an image on top of an another one, using the specified ratio + Draw an image on top of another one, using the specified ratio modify all partially-opaque pixels in the destination. */ static void blit_with_interpolate_overlay(video::IImage *src, video::IImage *dst, |