mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-13 02:27:49 +00:00
file_sys: Implement function to apply IPS patches
This commit is contained in:
parent
6d26c40ebb
commit
11b272edff
2 changed files with 103 additions and 0 deletions
15
src/core/file_sys/ips_layer.h
Normal file
15
src/core/file_sys/ips_layer.h
Normal 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
|
Loading…
Add table
Add a link
Reference in a new issue