mirror of
https://github.com/hrydgard/ppsspp.git
synced 2025-04-02 11:01:50 -04:00
Fixed invalid preprocessor directive
This commit is contained in:
parent
e8a81df8d8
commit
76dd5d380e
1 changed files with 1 additions and 1 deletions
|
@ -156,7 +156,7 @@ bool getFileInfo(const char *path, FileInfo *fileInfo) {
|
||||||
|
|
||||||
std::string copy(path);
|
std::string copy(path);
|
||||||
|
|
||||||
#ifdef __ANDROID__ && __ANDROID_API__ < 21
|
#if (defined __ANDROID__) && (__ANDROID_API__ < 21)
|
||||||
struct stat file_info;
|
struct stat file_info;
|
||||||
int result = stat(copy.c_str(), &file_info);
|
int result = stat(copy.c_str(), &file_info);
|
||||||
#else
|
#else
|
||||||
|
|
Loading…
Add table
Reference in a new issue