From f11c1613bd85e7430ae8e4ab4874ce382066b772 Mon Sep 17 00:00:00 2001 From: Megamouse Date: Wed, 25 Oct 2023 20:08:33 +0200 Subject: [PATCH] fix unused parameter warning --- rpcs3/Emu/VFS.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/rpcs3/Emu/VFS.cpp b/rpcs3/Emu/VFS.cpp index 80101968d6..43ae1cdbce 100644 --- a/rpcs3/Emu/VFS.cpp +++ b/rpcs3/Emu/VFS.cpp @@ -1054,7 +1054,7 @@ bool vfs::host::unlink(const std::string& path, [[maybe_unused]] const std::stri #endif } -bool vfs::host::remove_all(const std::string& path, [[maybe_unused]] const std::string& dev_root, [[maybe_unused]] const lv2_fs_mount_point* mp, bool remove_root, bool lock) +bool vfs::host::remove_all(const std::string& path, [[maybe_unused]] const std::string& dev_root, [[maybe_unused]] const lv2_fs_mount_point* mp, bool remove_root, [[maybe_unused]] bool lock) { #ifdef _WIN32 if (remove_root)