mirror of
https://github.com/RPCS3/rpcs3.git
synced 2025-07-08 16:01:42 +12:00
Bugfixes
This commit is contained in:
parent
ab405901ee
commit
93ebce4162
5 changed files with 86 additions and 101 deletions
|
@ -407,9 +407,7 @@ void Emulator::SavePoints(const std::string& path)
|
|||
|
||||
void Emulator::LoadPoints(const std::string& path)
|
||||
{
|
||||
struct stat buf;
|
||||
if (!stat(path.c_str(), &buf))
|
||||
return;
|
||||
if (!rExists(path)) return;
|
||||
std::ifstream f(path, std::ios::binary);
|
||||
if (!f.is_open())
|
||||
return;
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue