summaryrefslogtreecommitdiff
path: root/Userland/Libraries/LibGfx/DDSLoader.cpp
diff options
context:
space:
mode:
authorNico Weber <thakis@chromium.org>2021-09-30 20:03:41 -0400
committerLinus Groh <mail@linusgroh.de>2021-10-01 01:06:40 +0100
commitde723329205c8242cf78dcc6f028bc9fece85059 (patch)
tree079f131226dc6c617f5b4b8887438c905f6d4318 /Userland/Libraries/LibGfx/DDSLoader.cpp
parent9ec9886b04b1388c3996d11e516cda6cc6052dba (diff)
downloadserenity-de723329205c8242cf78dcc6f028bc9fece85059.zip
Libraries: Fix typos
Diffstat (limited to 'Userland/Libraries/LibGfx/DDSLoader.cpp')
-rw-r--r--Userland/Libraries/LibGfx/DDSLoader.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/Userland/Libraries/LibGfx/DDSLoader.cpp b/Userland/Libraries/LibGfx/DDSLoader.cpp
index 430bcdeab3..a6e5041fdd 100644
--- a/Userland/Libraries/LibGfx/DDSLoader.cpp
+++ b/Userland/Libraries/LibGfx/DDSLoader.cpp
@@ -796,7 +796,7 @@ static bool decode_dds(DDSLoadingContext& context)
decode_bitmap(stream, context, format, width, height);
- // We support parsing mipmaps, but we only care about the largest one :^) (Atleast for now)
+ // We support parsing mipmaps, but we only care about the largest one :^) (At least for now)
break;
}
@@ -1020,7 +1020,7 @@ bool DDSImageDecoderPlugin::set_nonvolatile(bool& was_purged)
bool DDSImageDecoderPlugin::sniff()
{
- // The header is always atleast 128 bytes, so if the file is smaller, it cant be a DDS.
+ // The header is always at least 128 bytes, so if the file is smaller, it can't be a DDS.
return m_context->data_size > 128
&& m_context->data[0] == 0x44
&& m_context->data[1] == 0x44