diff options
Diffstat (limited to 'backends')
-rw-r--r-- | backends/platform/3ds/sprite.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/backends/platform/3ds/sprite.cpp b/backends/platform/3ds/sprite.cpp index a0aee385a9..f97c611473 100644 --- a/backends/platform/3ds/sprite.cpp +++ b/backends/platform/3ds/sprite.cpp @@ -62,7 +62,7 @@ void Sprite::create(uint16 width, uint16 height, const Graphics::PixelFormat &f) actualHeight = height; format = f; w = MAX(nextHigher2(width), 64u); - h = MAX(nextHigher2(height), 64u);; + h = MAX(nextHigher2(height), 64u); pitch = w * format.bytesPerPixel; dirtyPixels = true; |