mirror of
https://github.com/hrydgard/ppsspp.git
synced 2024-11-23 05:19:56 +00:00
Fixed invalid preprocessor directive
This commit is contained in:
parent
e8a81df8d8
commit
76dd5d380e
@ -156,7 +156,7 @@ bool getFileInfo(const char *path, FileInfo *fileInfo) {
|
||||
|
||||
std::string copy(path);
|
||||
|
||||
#ifdef __ANDROID__ && __ANDROID_API__ < 21
|
||||
#if (defined __ANDROID__) && (__ANDROID_API__ < 21)
|
||||
struct stat file_info;
|
||||
int result = stat(copy.c_str(), &file_info);
|
||||
#else
|
||||
|
Loading…
Reference in New Issue
Block a user