updated to latest mobile-common (should fix love.touch index problems)

This commit is contained in:
fysx
2014-05-03 14:13:40 +02:00
parent c40250e565
commit 97d9154e48
40 changed files with 321 additions and 199 deletions
+1 -1
View File
@@ -29,7 +29,7 @@ namespace love
namespace joystick
{
float Joystick::clampval(float x) const
float Joystick::clampval(float x)
{
if (fabsf(x) < 0.01)
return 0.0f;
+1 -3
View File
@@ -173,9 +173,7 @@ public:
static bool getConstant(const char *in, InputType &out);
static bool getConstant(InputType in, const char *&out);
protected:
float clampval(float x) const;
static float clampval(float x);
private: