mirror of
https://github.com/shadps4-emu/shadPS4.git
synced 2025-05-20 18:34:58 +00:00
fs: Actually functional linux case insensitive search
This commit is contained in:
parent
26f8fbf628
commit
dbeed80e3b
7 changed files with 145 additions and 108 deletions
|
@ -205,9 +205,9 @@ public:
|
|||
return WriteSpan(string);
|
||||
}
|
||||
|
||||
static void WriteBytes(const std::filesystem::path path, std::span<u8> vec) {
|
||||
static void WriteBytes(const std::filesystem::path path, std::span<const u8> data) {
|
||||
IOFile out(path, FileAccessMode::Write);
|
||||
out.Write(vec);
|
||||
out.Write(data);
|
||||
}
|
||||
|
||||
private:
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue