libretro: Expose bool system properties.
This commit is contained in:
parent
8e15f755e6
commit
5b5a8c9c05
1 changed files with 11 additions and 0 deletions
|
@ -927,6 +927,17 @@ float System_GetPropertyFloat(SystemProperty prop)
|
||||||
return -1;
|
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::string System_GetProperty(SystemProperty prop) { return ""; }
|
||||||
std::vector<std::string> System_GetPropertyStringVec(SystemProperty prop) { return std::vector<std::string>(); }
|
std::vector<std::string> System_GetPropertyStringVec(SystemProperty prop) { return std::vector<std::string>(); }
|
||||||
|
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue