mirror of
https://github.com/libretro/ppsspp.git
synced 2024-11-25 01:00:01 +00:00
Buildfix
This commit is contained in:
parent
aafdd674dc
commit
d49cffe3f5
@ -135,7 +135,9 @@ bool Exists(const std::string &filename)
|
||||
{
|
||||
// Make sure Windows will no longer handle critical errors, which means no annoying "No disk" dialog
|
||||
// Save the old error mode
|
||||
#ifdef _WIN32
|
||||
int OldMode = SetErrorMode(SEM_FAILCRITICALERRORS);
|
||||
#endif
|
||||
|
||||
struct stat64 file_info;
|
||||
#if defined(_WIN32) && defined(UNICODE)
|
||||
@ -151,7 +153,9 @@ bool Exists(const std::string &filename)
|
||||
#endif
|
||||
|
||||
// Set the old error mode
|
||||
#ifdef _WIN32
|
||||
SetErrorMode(OldMode);
|
||||
#endif
|
||||
|
||||
return (result == 0);
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user