mirror of
https://github.com/PabloMK7/citra.git
synced 2025-09-10 21:00:06 +00:00
Artic Base: Implement DLC support and other fixes (#173)
* Artic Base: Implement DLC support and other fixes * Fix per game settings not working with artic loader * Fix compilation error
This commit is contained in:
parent
1e2be72e5e
commit
4780a7134d
16 changed files with 992 additions and 236 deletions
|
@ -151,7 +151,14 @@ void ConfigurePerGame::LoadConfiguration() {
|
|||
ui->display_title_id->setText(
|
||||
QStringLiteral("%1").arg(title_id, 16, 16, QLatin1Char{'0'}).toUpper());
|
||||
|
||||
const auto loader = Loader::GetLoader(filename);
|
||||
std::unique_ptr<Loader::AppLoader> loader_ptr;
|
||||
Loader::AppLoader* loader;
|
||||
if (system.IsPoweredOn()) {
|
||||
loader = &system.GetAppLoader();
|
||||
} else {
|
||||
loader_ptr = Loader::GetLoader(filename);
|
||||
loader = loader_ptr.get();
|
||||
}
|
||||
|
||||
std::string title;
|
||||
if (loader->ReadTitle(title) == Loader::ResultStatus::Success)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue