mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-12-06 07:12:28 +01:00
Merge pull request #973 from sb2130/small-fix
small fix on loader::load(vfsStream& stream)
This commit is contained in:
commit
a7e4e07a80
|
|
@ -21,10 +21,12 @@ namespace loader
|
||||||
|
|
||||||
LOG_ERROR(LOADER, "loader::load() failed: %s", i->get_error_code().c_str());
|
LOG_ERROR(LOADER, "loader::load() failed: %s", i->get_error_code().c_str());
|
||||||
}
|
}
|
||||||
|
else
|
||||||
|
{
|
||||||
LOG_ERROR(LOADER, "loader::init() failed: %s", i->get_error_code().c_str());
|
LOG_ERROR(LOADER, "loader::init() failed: %s", i->get_error_code().c_str());
|
||||||
stream.Seek(i->get_stream_offset());
|
stream.Seek(i->get_stream_offset());
|
||||||
}
|
}
|
||||||
|
}
|
||||||
|
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue