diff options
author | glx22 <glx22@users.noreply.github.com> | 2019-09-14 16:52:35 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-09-14 16:52:35 +0200 |
commit | 2ed88d689894814474385b58595ad041e06aebbf (patch) | |
tree | 7fc2bd41d1cb36b4d6c4f668a50dfc5b089a9239 | |
parent | 165eae0e8003662d4311de1e1e748e9ba6805348 (diff) | |
download | openttd-2ed88d689894814474385b58595ad041e06aebbf.tar.xz |
Fix: inconsistent description for 32bpp-sse4-anim blitter (#7740)
-rw-r--r-- | src/blitter/32bpp_anim_sse4.hpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/blitter/32bpp_anim_sse4.hpp b/src/blitter/32bpp_anim_sse4.hpp index 2fefd3001..1a39a26fb 100644 --- a/src/blitter/32bpp_anim_sse4.hpp +++ b/src/blitter/32bpp_anim_sse4.hpp @@ -46,7 +46,7 @@ public: /** Factory for the SSE4 32 bpp blitter (with palette animation). */ class FBlitter_32bppSSE4_Anim: public BlitterFactory { public: - FBlitter_32bppSSE4_Anim() : BlitterFactory("32bpp-sse4-anim", "SSE4 Blitter (palette animation)", HasCPUIDFlag(1, 2, 19)) {} + FBlitter_32bppSSE4_Anim() : BlitterFactory("32bpp-sse4-anim", "32bpp SSE4 Blitter (palette animation)", HasCPUIDFlag(1, 2, 19)) {} Blitter *CreateInstance() override { return new Blitter_32bppSSE4_Anim(); } }; |