mirror of
https://github.com/OpenMW/openmw.git
synced 2025-03-03 23:39:40 +00:00
Fix warning on MSVC convertion from double to float
This commit is contained in:
parent
b0e30e4bb6
commit
bfc9ea9e32
1 changed files with 1 additions and 1 deletions
|
@ -36,7 +36,7 @@ namespace
|
|||
{
|
||||
|
||||
const int cellSize = Constants::CellSizeInUnits;
|
||||
constexpr float speed = 1.08; //the zoom speed, it should be greater than 1
|
||||
constexpr float speed = 1.08f; //the zoom speed, it should be greater than 1
|
||||
|
||||
enum LocalMapWidgetDepth
|
||||
{
|
||||
|
|
Loading…
Reference in a new issue