mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-10 04:40:05 +00:00
cfg: Update preferred region data on-demand. (#7206)
This commit is contained in:
parent
68e6a2185d
commit
c0ecdb689d
11 changed files with 66 additions and 59 deletions
|
@ -91,6 +91,14 @@ public:
|
|||
*/
|
||||
virtual FileType GetFileType() = 0;
|
||||
|
||||
/**
|
||||
* Returns the preferred region codes of this file
|
||||
* @return A vector of the preferred region codes
|
||||
*/
|
||||
[[nodiscard]] virtual std::span<const u32> GetPreferredRegions() const {
|
||||
return {};
|
||||
}
|
||||
|
||||
/**
|
||||
* Load the application and return the created Process instance
|
||||
* @param process The newly created process.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue