diff --git a/AUTHORS b/AUTHORS index 48e7a43f..8692f05c 100644 --- a/AUTHORS +++ b/AUTHORS @@ -27,7 +27,7 @@ PCSX-Reloaded Authors/Contributors: avlex (Help on xcode project) maggix (Snow Leopard compile fix) NeToU (Bugfix) Peter Collingbourne (Various core/psxbios fixes) - shalma (Various core fixes) + shalma (GTE Divider, various core fixes) Tristin Celestin (PulseAudio support) Wei Mingzhi (Maintainer, input plugin, iso/cheat support, misc stuff) diff --git a/ChangeLog b/ChangeLog index f6c6b203..e4b0cdb7 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,7 +1,7 @@ May 23, 2010 Wei Mingzhi - * AUTHORS: Updated on request. - * gui/AboutDlg.c: Likewise. + * AUTHORS: Updated info. + * gui/AboutDlg.c: Likewise, and fixed FTBFS on SLED 10. * gui/MemcardDlg.c: Show Japanese titles properly. * libpcsxcore/sio.h: Likewise. * libpcsxcore/sio.c: Likewise. diff --git a/gui/AboutDlg.c b/gui/AboutDlg.c index 03b62580..0cc1fe8c 100644 --- a/gui/AboutDlg.c +++ b/gui/AboutDlg.c @@ -19,6 +19,10 @@ #include "Linux.h" #include +#if GTK_MAJOR_VERSION <= 2 && GTK_MINOR_VERSION < 12 +#define gtk_about_dialog_set_program_name gtk_about_dialog_set_name +#endif + #define ABOUT_VERSION "svn" void RunAboutDialog(void) { diff --git a/libpcsxcore/psxmem.c b/libpcsxcore/psxmem.c index 9d67c465..47c1ef12 100644 --- a/libpcsxcore/psxmem.c +++ b/libpcsxcore/psxmem.c @@ -21,6 +21,8 @@ * PSX memory functions. */ +// TODO: Implement caches & cycle penalty. + #include "psxmem.h" #include "r3000a.h" #include "psxhw.h" diff --git a/libpcsxcore/sio.c b/libpcsxcore/sio.c index f0655cd9..a31d6ee7 100644 --- a/libpcsxcore/sio.c +++ b/libpcsxcore/sio.c @@ -181,8 +181,8 @@ void sioWrite8(unsigned char value) { { char xor = 0; int i; - for (i=2;i<128+4;i++) - xor^=buf[i]; + for (i = 2; i < 128 + 4; i++) + xor ^= buf[i]; buf[132] = xor; } buf[133] = 0x47; @@ -721,6 +721,9 @@ void GetMcdBlockInfo(int mcd, int block, McdBlock *Info) { ptr += 2; } + trim(str); + trim(sstr); + ptr = data + block * 8192 + 0x60; // icon palette data for (i = 0; i < 16; i++) {