Declare struct sim_dirent the same way as rockbox core's struct dirent. Fixes file time reading for 64 bit sims.
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@13053 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
parent
f0ed594aaa
commit
d6cb716697
1 changed files with 2 additions and 2 deletions
|
@ -67,8 +67,8 @@ void dircache_rename(const char *oldpath, const char *newpath);
|
|||
struct sim_dirent {
|
||||
unsigned char d_name[MAX_PATH];
|
||||
int attribute;
|
||||
int size;
|
||||
int startcluster;
|
||||
long size;
|
||||
long startcluster;
|
||||
unsigned short wrtdate; /* Last write date */
|
||||
unsigned short wrttime; /* Last write time */
|
||||
};
|
||||
|
|
Loading…
Reference in a new issue