Compile fixes

This commit is contained in:
Joshua Granick
2014-03-18 22:59:11 -07:00
parent 098b4328de
commit 933fec22ac
2 changed files with 5 additions and 1 deletions

View File

@@ -69,7 +69,7 @@ namespace lime {
QuickVec<GLuint> mZombieVbos;
#ifdef ANDROID
OpenGLS3D *mS3D;
OpenGLS3D mS3D;
#endif
};

View File

@@ -685,7 +685,11 @@ public:
double mDownY;
const char *getJoystickName(int id) {
#if !defined(BLACKBERRY) && !defined(EMSCRIPTEN)
return SDL_JoystickNameForIndex(id);
#else
return "";
#endif
}
Surface *GetPrimarySurface()