fix for ps3.2 compilation

This commit is contained in:
iceman1001 2019-09-21 11:48:55 +02:00
parent f7510dc6aa
commit 862bf1b793

View file

@ -78,7 +78,7 @@ int is_regular_file(const char *filename) {
#ifdef _WIN32
struct _stat st;
_stat(filename, &st);
return S_ISREG(_st.st_mode);
return S_ISREG(st.st_mode);
#else
struct stat st;
stat(filename, &st);