file_sys: Implement function to apply IPS patches

This commit is contained in:
Zach Hilman
2018-09-29 22:13:15 -04:00
parent 3c9e70fefa
commit 21b2411c44
2 changed files with 103 additions and 0 deletions

View File

@ -0,0 +1,15 @@
// Copyright 2018 yuzu emulator team
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include <memory>
#include "core/file_sys/vfs.h"
namespace FileSys {
VirtualFile PatchIPS(const VirtualFile& in, const VirtualFile& ips);
} // namespace FileSys