mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-06-12 09:48:01 -05:00
Common: Rename the File namespace to FileUtil, to match the filename and prevent collisions.
This commit is contained in:
@ -78,7 +78,7 @@ ResultStatus LoadFile(const std::string& filename) {
|
||||
{
|
||||
INFO_LOG(LOADER, "Loading BIN file %s...", filename.c_str());
|
||||
|
||||
File::IOFile file(filename, "rb");
|
||||
FileUtil::IOFile file(filename, "rb");
|
||||
|
||||
if (file.IsOpen()) {
|
||||
file.ReadBytes(Memory::GetPointer(Memory::EXEFS_CODE_VADDR), (size_t)file.GetSize());
|
||||
|
Reference in New Issue
Block a user