diff options
| author | 2014-09-12 00:17:15 +0200 | |
|---|---|---|
| committer | 2014-09-17 14:35:45 +0000 | |
| commit | 6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc (patch) | |
| tree | dd5cdcd8b1f9822a019362b44a44ec9505adff8a /src/core/loader/elf.cpp | |
| parent | Common: Return the number of items read/written in IOFile’s methods instead... (diff) | |
| download | yuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.tar.gz yuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.tar.xz yuzu-6b7b36a8745ddfd0e24fa51ef74dbc3058b3dacc.zip | |
Common: Rename the File namespace to FileUtil, to match the filename and prevent collisions.
Diffstat (limited to 'src/core/loader/elf.cpp')
| -rw-r--r-- | src/core/loader/elf.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/core/loader/elf.cpp b/src/core/loader/elf.cpp index 76c9d6d54..389d5a8c9 100644 --- a/src/core/loader/elf.cpp +++ b/src/core/loader/elf.cpp | |||
| @@ -351,7 +351,7 @@ ResultStatus AppLoader_ELF::Load() { | |||
| 351 | if (is_loaded) | 351 | if (is_loaded) |
| 352 | return ResultStatus::ErrorAlreadyLoaded; | 352 | return ResultStatus::ErrorAlreadyLoaded; |
| 353 | 353 | ||
| 354 | File::IOFile file(filename, "rb"); | 354 | FileUtil::IOFile file(filename, "rb"); |
| 355 | 355 | ||
| 356 | if (file.IsOpen()) { | 356 | if (file.IsOpen()) { |
| 357 | u32 size = (u32)file.GetSize(); | 357 | u32 size = (u32)file.GetSize(); |