fix for ps3.2 compilation
This commit is contained in:
@@ -78,7 +78,7 @@ int is_regular_file(const char *filename) {
|
|||||||
#ifdef _WIN32
|
#ifdef _WIN32
|
||||||
struct _stat st;
|
struct _stat st;
|
||||||
_stat(filename, &st);
|
_stat(filename, &st);
|
||||||
return S_ISREG(_st.st_mode);
|
return S_ISREG(st.st_mode);
|
||||||
#else
|
#else
|
||||||
struct stat st;
|
struct stat st;
|
||||||
stat(filename, &st);
|
stat(filename, &st);
|
||||||
|
|||||||
Reference in New Issue
Block a user