summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-07-07 12:59:44 +0000
committerSND\weimingzhi_cp <SND\weimingzhi_cp@e17a0e51-4ae3-4d35-97c3-1a29b211df97>2009-07-07 12:59:44 +0000
commitbbb802677214fd3309f0671aa4246bbd1a91370c (patch)
treea57b5c56a3c1a5ab7c0f9f17294c191f0854f955
parent507ba48e936164fe521ccb8faf8d14068ecdc3ed (diff)
downloadpcsxr-bbb802677214fd3309f0671aa4246bbd1a91370c.tar.gz
git-svn-id: https://pcsxr.svn.codeplex.com/svn/pcsxr@23938 e17a0e51-4ae3-4d35-97c3-1a29b211df97
-rw-r--r--ChangeLog5
-rw-r--r--libpcsxcore/psxbios.c2
2 files changed, 6 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index a8737413..5d399a16 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -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];
};