diff options
author | Torbjörn Andersson | 2016-05-25 05:37:07 +0200 |
---|---|---|
committer | Torbjörn Andersson | 2016-05-25 05:37:07 +0200 |
commit | 85e55d0c6ee6c1cdfabf121cc10d359c6c473cd6 (patch) | |
tree | 3dc6a8bb44a043fd930a928df172389d78d68086 /backends | |
parent | f37bfb4677d185b2ae506596b8eca59f6aea1fda (diff) | |
download | scummvm-rg350-85e55d0c6ee6c1cdfabf121cc10d359c6c473cd6.tar.gz scummvm-rg350-85e55d0c6ee6c1cdfabf121cc10d359c6c473cd6.tar.bz2 scummvm-rg350-85e55d0c6ee6c1cdfabf121cc10d359c6c473cd6.zip |
JANITORIAL: Remove unnecessary semicolons
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; |