1
0
Fork 0
mirror of https://github.com/opentx/opentx.git synced 2025-07-23 08:15:17 +03:00
This commit is contained in:
bsongis 2014-05-16 22:33:00 +02:00
parent 5bfe5d9cf6
commit 96ddda7bef
5 changed files with 27 additions and 15 deletions

View file

@ -1573,4 +1573,14 @@ bool isAssignableFunctionAvailable(int function)
return true;
}
}
bool isModuleAvailable(int module)
{
#if !defined(PXX)
if (module == MODULE_TYPE_XJT)
return false;
#endif
return true;
}
#endif