PS3: Handle platform specific features

This commit is contained in:
Paweł Kołodziejski 2022-06-19 20:13:37 +02:00
parent 06edf3dd0c
commit 4053592c69
No known key found for this signature in database
GPG key ID: 0BDADC9E74440FF7
2 changed files with 12 additions and 0 deletions

View file

@ -124,3 +124,14 @@ Common::HardwareInputSet *OSystem_PS3::getHardwareInputSet() {
return inputSet;
}
bool OSystem_PS3::hasFeature(Feature f) {
if (f == kFeatureDisplayLogFile ||
f == kFeatureOpenUrl ||
f == kFeatureSystemBrowserDialog ||
f == kFeatureClipboardSupport) {
return false;
}
return OSystem_SDL::hasFeature(f);
}