mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-10 00:41:26 +12:00
Fix some warnings
This commit is contained in:
parent
315d9c308b
commit
58140e1d3a
10 changed files with 34 additions and 25 deletions
|
@ -3218,7 +3218,10 @@ bool Emulator::IsPathInsideDir(std::string_view path, std::string_view dir) cons
|
|||
return !dir_path.empty() && (GetCallbacks().resolve_path(path) + '/').starts_with((dir_path.back() == '/') ? dir_path : (dir_path + '/'));
|
||||
}
|
||||
|
||||
game_boot_result Emulator::VerifyPathCasing(std::string_view path, std::string_view dir, bool from_dir) const
|
||||
game_boot_result Emulator::VerifyPathCasing(
|
||||
[[maybe_unused]] std::string_view path,
|
||||
[[maybe_unused]] std::string_view dir,
|
||||
[[maybe_unused]] bool from_dir) const
|
||||
{
|
||||
#ifdef _WIN32
|
||||
// path might be passed from command line with differences in uppercase/lowercase on windows.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue