using latest love-android @ changeset 8659be0e75a3

This commit is contained in:
fysx
2014-05-25 16:05:26 +02:00
parent 1d29da2d80
commit 49265f0596
58 changed files with 2008 additions and 366 deletions
@@ -28,7 +28,7 @@ namespace joystick
namespace sdl
{
static JoystickModule *instance = 0;
static JoystickModule *instance = nullptr;
int w_getJoysticks(lua_State *L)
{
@@ -194,7 +194,7 @@ static const lua_CFunction types[] =
extern "C" int luaopen_love_joystick(lua_State *L)
{
if (instance == 0)
if (instance == nullptr)
{
EXCEPT_GUARD(instance = new JoystickModule();)
}