HostInterface: Add OpenPackageFile method
This commit is contained in:
@ -864,6 +864,12 @@ std::string LibretroHostInterface::GetBIOSDirectory()
|
||||
return system_directory;
|
||||
}
|
||||
|
||||
std::unique_ptr<ByteStream> LibretroHostInterface::OpenPackageFile(const char* path, u32 flags)
|
||||
{
|
||||
Log_ErrorPrintf("Ignoring request for package file '%s'", path);
|
||||
return {};
|
||||
}
|
||||
|
||||
void LibretroHostInterface::LoadSettings()
|
||||
{
|
||||
LibretroSettingsInterface si;
|
||||
|
||||
@ -33,6 +33,7 @@ public:
|
||||
std::string GetShaderCacheBasePath() const override;
|
||||
std::string GetStringSettingValue(const char* section, const char* key, const char* default_value = "") override;
|
||||
std::string GetBIOSDirectory() override;
|
||||
std::unique_ptr<ByteStream> OpenPackageFile(const char* path, u32 flags) override;
|
||||
|
||||
bool UpdateSystemAVInfo(bool use_resolution_scale);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user