diff options
author | Andrei Karas <akaras@inbox.ru> | 2018-12-07 04:35:19 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2018-12-07 18:50:36 +0300 |
commit | 514878dd29b52fcbdc3ec63833d528070d502880 (patch) | |
tree | 8d4abe6e8a5146630f9d66908f8ccdf860f1b8d2 /src/test | |
parent | 48ea9be889ecc77ae0ee7e952f1970771a92e5c9 (diff) | |
download | mv-514878dd29b52fcbdc3ec63833d528070d502880.tar.gz mv-514878dd29b52fcbdc3ec63833d528070d502880.tar.bz2 mv-514878dd29b52fcbdc3ec63833d528070d502880.tar.xz mv-514878dd29b52fcbdc3ec63833d528070d502880.zip |
Fix code style.
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/testlauncher.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/testlauncher.cpp b/src/test/testlauncher.cpp index 2e886b2c9..cea9e3274 100644 --- a/src/test/testlauncher.cpp +++ b/src/test/testlauncher.cpp @@ -751,7 +751,7 @@ int TestLauncher::testDraw() mainGraphics->drawRectangle(Rect(0, 0, 400, 200)); mainGraphics->setColor(Color(0xFFU, 0x00U, 0x00U, 0xB0U)); - img[0]->setAlpha(0.5f); + img[0]->setAlpha(0.5F); mainGraphics->drawImage(img[0], 190, 383); img[0]->setAlpha(1.0F); @@ -791,7 +791,7 @@ int TestLauncher::testDraw() mainGraphics->drawTileCollection(col); - img[0]->setAlpha(0.3f); + img[0]->setAlpha(0.3F); mainGraphics->drawRescaledPattern(img[0], 250, 150, 250, 300, 30, 100); for (int f = 0; f < 255; f ++) |