1
0
Fork 0
forked from len0rd/rockbox

64-bit sim fixes

git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9316 a1c6a512-1295-4272-9138-f99709370657
This commit is contained in:
Dave Chapman 2006-03-28 16:46:10 +00:00
parent 909b6d2653
commit cd88582478
2 changed files with 4 additions and 4 deletions

View file

@ -44,7 +44,7 @@ byte *save_p;
// Pads save_p to a 4-byte boundary
// so that the load/save works on SGI&Gecko.
#define PADSAVEP() do { save_p += (4 - ((int) save_p & 3)) & 3; } while (0)
#define PADSAVEP() do { save_p += (4 - ((unsigned long) save_p & 3)) & 3; } while (0)
//
// P_ArchivePlayers
//