From 7948bac6ba491671f44b2943fa2b6d397e084ad7 Mon Sep 17 00:00:00 2001 From: Flyinghead Date: Fri, 9 Jul 2021 16:23:46 +0200 Subject: [PATCH] libretro: fix per-game VMU A1 option --- shell/libretro/oslib.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/shell/libretro/oslib.cpp b/shell/libretro/oslib.cpp index 5c0c9d3dd..a7165a69c 100644 --- a/shell/libretro/oslib.cpp +++ b/shell/libretro/oslib.cpp @@ -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;