1
0
mirror of https://github.com/citra-emu/citra.git synced 2025-04-11 09:50:08 +00:00
This commit is contained in:
condut 2015-07-10 01:02:27 +03:00 committed by condut
parent 2414fe33f8
commit e3527e15ea

@ -18,7 +18,7 @@ namespace FileSys {
ArchiveFactory_RomFS::ArchiveFactory_RomFS(const Loader::AppLoader& app_loader) {
// Load the RomFS from the app
if (Loader::ResultStatus::Success != app_loader.ReadRomFS (m_romfs_file, m_offset, m_size)) {
if (Loader::ResultStatus::Success != app_loader.ReadRomFS(m_romfs_file, m_offset, m_size)) {
LOG_ERROR(Service_FS, "Unable to read RomFS!");
}
}