Warning fix.

Fixes warning C4305 in VS.
This commit is contained in:
shenweip 2020-03-03 17:45:23 +08:00
parent c08c03a8ff
commit 140cb43c8b

View File

@ -179,6 +179,6 @@ private:
UI::EventReturn GridPlusClick(UI::EventParams &e);
UI::EventReturn GridMinusClick(UI::EventParams &e);
UI::EventReturn OnRecentClearClick(UI::EventParams &e);
const float MAX_GAME_GRID_SCALE = 3.0;
const float MIN_GAME_GRID_SCALE = 0.8;
const float MAX_GAME_GRID_SCALE = 3.0f;
const float MIN_GAME_GRID_SCALE = 0.8f;
};