Rename love.mouse.hasCursor to isCursorSupported (resolves issue #1309).

--HG--
branch : minor
This commit is contained in:
Alex Szpakowski
2017-08-05 16:53:27 -03:00
parent f0c682d50d
commit 254e50dbfe
6 changed files with 10 additions and 9 deletions
+1 -1
View File
@@ -107,7 +107,7 @@ love::mouse::Cursor *Mouse::getCursor() const
}
bool Mouse::hasCursor() const
bool Mouse::isCursorSupported() const
{
return SDL_GetDefaultCursor() != nullptr;
}
+1 -1
View File
@@ -53,7 +53,7 @@ public:
love::mouse::Cursor *getCursor() const override;
bool hasCursor() const override;
bool isCursorSupported() const override;
double getX() const override;
double getY() const override;