mirror of
https://github.com/RetroDECK/Duckstation.git
synced 2025-02-18 11:55:38 +00:00
libretro: Make single cards for playlist the default, fix disabled case
This bug was causing the option to act as if it was disabled anyway.
This commit is contained in:
parent
881d21985d
commit
7c697f363e
|
@ -392,7 +392,7 @@ bool Boot(const SystemBootParameters& params)
|
||||||
}
|
}
|
||||||
|
|
||||||
// Notify change of disc.
|
// Notify change of disc.
|
||||||
UpdateRunningGame(params.filename.c_str(), media.get());
|
UpdateRunningGame(media ? media->GetFileName().c_str() : params.filename.c_str(), media.get());
|
||||||
UpdateControllers();
|
UpdateControllers();
|
||||||
UpdateMemoryCards();
|
UpdateMemoryCards();
|
||||||
Reset();
|
Reset();
|
||||||
|
|
|
@ -520,7 +520,7 @@ static std::array<retro_core_option_definition, 30> s_option_definitions = {{
|
||||||
"When using a playlist (m3u) and per-game (title) memory cards, a single memory card "
|
"When using a playlist (m3u) and per-game (title) memory cards, a single memory card "
|
||||||
"will be used for all discs. If unchecked, a separate card will be used for each disc.",
|
"will be used for all discs. If unchecked, a separate card will be used for each disc.",
|
||||||
{{"true", "Enabled"}, {"false", "Disabled"}},
|
{{"true", "Enabled"}, {"false", "Disabled"}},
|
||||||
"false"},
|
"true"},
|
||||||
{"duckstation_Controller1.Type",
|
{"duckstation_Controller1.Type",
|
||||||
"Controller 1 Type",
|
"Controller 1 Type",
|
||||||
"Sets the type of controller for Slot 1.",
|
"Sets the type of controller for Slot 1.",
|
||||||
|
|
Loading…
Reference in a new issue