diff options
| -rw-r--r-- | ChangeLog | 5 | ||||
| -rw-r--r-- | libpcsxcore/psxbios.c | 2 |
2 files changed, 6 insertions, 1 deletions
@@ -1,3 +1,8 @@ +July 7, 2009 Wei Mingzhi <weimingzhi@gmail.com> + + * libpcsxcore/psxbios.c: Use u32 instead of native pointer for + DIRENTRY::next. It's a pointer in PSX subsystem and not in native system. + July 4, 2009 Wei Mingzhi <weimingzhi@gmail.com> * debian/control: Added libasound2-dev to Build-Depends. diff --git a/libpcsxcore/psxbios.c b/libpcsxcore/psxbios.c index d55ee101..6206e9e5 100644 --- a/libpcsxcore/psxbios.c +++ b/libpcsxcore/psxbios.c @@ -225,7 +225,7 @@ struct DIRENTRY { char name[20]; s32 attr; s32 size; - struct DIRENTRY *next; + u32 next; s32 head; char system[4]; }; |
