forked from teamnwah/openmw-tes3coop
Fix unused ICS_MAX warning
This commit is contained in:
parent
172cc65be9
commit
6f878327bf
2 changed files with 3 additions and 1 deletions
2
extern/oics/ICSInputControlSystem.cpp
vendored
2
extern/oics/ICSInputControlSystem.cpp
vendored
|
@ -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)
|
||||
|
|
2
extern/oics/ICSInputControlSystem.h
vendored
2
extern/oics/ICSInputControlSystem.h
vendored
|
@ -236,7 +236,7 @@ namespace ICS
|
|||
|
||||
};
|
||||
|
||||
static const float ICS_MAX = std::numeric_limits<float>::max();
|
||||
extern const float ICS_MAX;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in a new issue