mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-02-21 06:33:22 +00:00
libretro: Expose bool system properties.
This commit is contained in:
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>(); }
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user