(Windows) Fixed an MSVC compiler warning.

This commit is contained in:
Leon Styhre 2021-07-04 21:34:21 +02:00
parent 83967a508d
commit aa67020326

View file

@ -52,7 +52,7 @@ public:
bool parseEvent(const SDL_Event& event, Window* window);
int getNumJoysticks() { return mJoysticks.size(); }
int getNumJoysticks() { return static_cast<int>(mJoysticks.size()); }
private:
bool initialized() const;