1
0
mirror of https://gitlab.com/OpenMW/openmw.git synced 2025-03-30 07:21:12 +00:00

Fix unused ICS_MAX warning

This commit is contained in:
scrawl 2017-06-04 12:50:25 +02:00
parent 172cc65be9
commit 6f878327bf
2 changed files with 3 additions and 1 deletions

View File

@ -28,6 +28,8 @@ SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
namespace ICS
{
const float ICS_MAX = std::numeric_limits<float>::max();
InputControlSystem::InputControlSystem(std::string file, bool active
, DetectingBindingListener* detectingBindingListener
, InputControlSystemLog* log, size_t channelCount)

View File

@ -236,7 +236,7 @@ namespace ICS
};
static const float ICS_MAX = std::numeric_limits<float>::max();
extern const float ICS_MAX;
}