summaryrefslogtreecommitdiffstats
path: root/core/image.cpp
diff options
context:
space:
mode:
authorRémi Verschelde <rverschelde@gmail.com>2017-01-14 18:03:38 +0100
committerRémi Verschelde <rverschelde@gmail.com>2017-01-16 08:49:52 +0100
commitf44ee891beaad397481dd88da41cb80e6539774f (patch)
tree82ce10e73d3b1da6229618ce93222ee49e34841b /core/image.cpp
parente2a3f06f3d0c49d87b86c12407d69174b58ae448 (diff)
downloadredot-engine-f44ee891beaad397481dd88da41cb80e6539774f.tar.gz
Style: Fix statements ending with ';;'
Diffstat (limited to 'core/image.cpp')
-rw-r--r--core/image.cpp8
1 files changed, 4 insertions, 4 deletions
diff --git a/core/image.cpp b/core/image.cpp
index a34278ac33..ed505b0f77 100644
--- a/core/image.cpp
+++ b/core/image.cpp
@@ -764,7 +764,7 @@ void Image::flip_y() {
bool gm=mipmaps;
if (gm)
- clear_mipmaps();;
+ clear_mipmaps();
@@ -791,7 +791,7 @@ void Image::flip_y() {
if (gm)
- generate_mipmaps();;
+ generate_mipmaps();
}
@@ -804,7 +804,7 @@ void Image::flip_x() {
bool gm=mipmaps;
if (gm)
- clear_mipmaps();;
+ clear_mipmaps();
{
@@ -829,7 +829,7 @@ void Image::flip_x() {
}
if (gm)
- generate_mipmaps();;
+ generate_mipmaps();
}