mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-02-10 22:49:00 +01:00
Merge pull request #12589 from AdmiralCurtiss/ios-fs-logs
IOS/FS: Display the invalid path in the ASSERT in BuildFilename().
This commit is contained in:
commit
cd9a7db4c1
@ -46,7 +46,7 @@ HostFileSystem::HostFilename HostFileSystem::BuildFilename(const std::string& wi
|
||||
if (wii_path.compare(0, 1, "/") == 0)
|
||||
return HostFilename{m_root_path + Common::EscapePath(wii_path), false};
|
||||
|
||||
ASSERT(false);
|
||||
ASSERT_MSG(IOS_FS, false, "Invalid Wii path '{}' given to BuildFilename()", wii_path);
|
||||
return HostFilename{m_root_path, false};
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user