diff options
author | Filippos Karapetis | 2014-10-19 17:03:14 +0300 |
---|---|---|
committer | Filippos Karapetis | 2014-10-19 17:03:14 +0300 |
commit | d3475fe3b699d6d2d8cd87b1b1b480e685717c74 (patch) | |
tree | b0281e6b1b85d9467af5480ea54f18efd322d836 | |
parent | 1d5536da02c20c5c635e02dd19aa38fb3b1128ec (diff) | |
download | scummvm-rg350-d3475fe3b699d6d2d8cd87b1b1b480e685717c74.tar.gz scummvm-rg350-d3475fe3b699d6d2d8cd87b1b1b480e685717c74.tar.bz2 scummvm-rg350-d3475fe3b699d6d2d8cd87b1b1b480e685717c74.zip |
GRAPHICS: Silence an MSVC warning
-rw-r--r-- | graphics/transform_tools.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/graphics/transform_tools.h b/graphics/transform_tools.h index a51c8ee229..ec739f9ad0 100644 --- a/graphics/transform_tools.h +++ b/graphics/transform_tools.h @@ -28,7 +28,7 @@ namespace Graphics { - static const float kEpsilon = 0.00001; // arbitrarily taken number + static const float kEpsilon = 0.00001f; // arbitrarily taken number struct FloatPoint { float x; |