libretro: fix per-game VMU A1 option

This commit is contained in:
Flyinghead 2021-07-09 16:23:46 +02:00
parent 345dab9633
commit 7948bac6ba
1 changed files with 2 additions and 2 deletions

View File

@ -35,8 +35,8 @@ std::string getVmuPath(const std::string& port)
{
char filename[PATH_MAX + 8];
if ((per_content_vmus == 1 && port != "A1") ||
(per_content_vmus == 2))
if ((per_content_vmus == 1 && port == "A1")
|| per_content_vmus == 2)
{
sprintf(filename, "%s.%s.bin", content_name, port.c_str());
return std::string(vmu_dir_no_slash) + std::string(path_default_slash()) + filename;