mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-06-01 16:02:39 +00:00
Mostly cleanup and some better crash messages. Also enabled partial block linking (see JitCache.cpp), should give a small speedup but may cause problems, please report!
git-svn-id: https://dolphin-emu.googlecode.com/svn/trunk@12 8ced0084-cf51-0410-be5f-012b33b47a6e
This commit is contained in:
parent
cb5072c3e4
commit
ea934759e1
28 changed files with 419 additions and 344 deletions
11
Source/Core/Common/Src/FileUtil.cpp
Normal file
11
Source/Core/Common/Src/FileUtil.cpp
Normal file
|
@ -0,0 +1,11 @@
|
|||
#include "Common.h"
|
||||
#include "FileUtil.h"
|
||||
|
||||
bool File::Exists(const std::string &filename)
|
||||
{
|
||||
#ifdef _WIN32
|
||||
return GetFileAttributes(filename.c_str()) != INVALID_FILE_ATTRIBUTES;
|
||||
#else
|
||||
return true; //TODO
|
||||
#endif
|
||||
}
|
Loading…
Add table
Add a link
Reference in a new issue