diff options
author | Andrei Karas <akaras@inbox.ru> | 2016-02-07 01:53:51 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2016-02-07 01:53:51 +0300 |
commit | 2492b561385859b7ef76fe816a8dc845f0b9bd09 (patch) | |
tree | 62633f8cd7c027c2a8e1bae61264a79394aeb751 /src/gui/widgets/shoplistbox.cpp | |
parent | ce14a018a6f66aa1309ebe71a8217082d83cd0da (diff) | |
download | manaplus-2492b561385859b7ef76fe816a8dc845f0b9bd09.tar.gz manaplus-2492b561385859b7ef76fe816a8dc845f0b9bd09.tar.bz2 manaplus-2492b561385859b7ef76fe816a8dc845f0b9bd09.tar.xz manaplus-2492b561385859b7ef76fe816a8dc845f0b9bd09.zip |
Fix some casts between signed and unsigned in some files.
Diffstat (limited to 'src/gui/widgets/shoplistbox.cpp')
-rw-r--r-- | src/gui/widgets/shoplistbox.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/gui/widgets/shoplistbox.cpp b/src/gui/widgets/shoplistbox.cpp index 655ab8126..1477f94e7 100644 --- a/src/gui/widgets/shoplistbox.cpp +++ b/src/gui/widgets/shoplistbox.cpp @@ -91,7 +91,7 @@ void ShopListBox::draw(Graphics *graphics) if (settings.guiAlpha != mAlpha) mAlpha = settings.guiAlpha; - const int alpha = static_cast<int>(mAlpha * 255.0F); + const unsigned int alpha = static_cast<unsigned int>(mAlpha * 255.0F); Font *const font = getFont(); const int sz = mListModel->getNumberOfElements(); |