libretro: Expose bool system properties.

This commit is contained in:
Unknown W. Brackets 2021-04-26 23:45:03 -07:00
parent 8e15f755e6
commit 5b5a8c9c05

@ -927,6 +927,17 @@ float System_GetPropertyFloat(SystemProperty prop)
return -1;
}
bool System_GetPropertyBool(SystemProperty prop)
{
switch (prop)
{
case SYSPROP_CAN_JIT:
return true;
default:
return false;
}
}
std::string System_GetProperty(SystemProperty prop) { return ""; }
std::vector<std::string> System_GetPropertyStringVec(SystemProperty prop) { return std::vector<std::string>(); }