diff --git a/engine/client/cl_mobile.c b/engine/client/cl_mobile.c index 3588c701..6c63ed4b 100644 --- a/engine/client/cl_mobile.c +++ b/engine/client/cl_mobile.c @@ -132,9 +132,15 @@ qboolean Mobile_Init( void ) } // make sure that mobile functions are cleared +#if 1 + // some SDKs define export as returning void, breaking the contract + // ignore result for now... + return true; +#else memset( &mobile_engfuncs, 0, sizeof( mobile_engfuncs )); return false; // just tell user about problems +#endif } return true; // mobile interface is missed