This commit is contained in:
codemastr 2004-02-21 01:10:58 +00:00
parent f8a13c22b2
commit 6016b57f1d

View file

@ -1822,7 +1822,7 @@ time_t unreal_getfilemodtime(char *filename)
struct stat sb;
if (stat(filename, &sb))
return 0;
return sb.st_ctime;
return sb.st_mtime;
#else
/* See how much more fun WinAPI programming is??? */
FILETIME cTime;