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:
Connor McLaughlin
2020-08-17 11:42:22 +10:00
parent 881d21985d
commit 7c697f363e
2 changed files with 2 additions and 2 deletions

View File

@ -392,7 +392,7 @@ bool Boot(const SystemBootParameters& params)
}
// Notify change of disc.
UpdateRunningGame(params.filename.c_str(), media.get());
UpdateRunningGame(media ? media->GetFileName().c_str() : params.filename.c_str(), media.get());
UpdateControllers();
UpdateMemoryCards();
Reset();