diff options
| author | Dave Chapman <dave@dchapman.com> | 2006-03-28 16:46:10 +0000 |
|---|---|---|
| committer | Dave Chapman <dave@dchapman.com> | 2006-03-28 16:46:10 +0000 |
| commit | cd88582478749aa09000361b9f4e48e73b5b307e (patch) | |
| tree | eee7c5e78181418323b9696695aa4a430f8dec22 /apps/plugins/doom/p_saveg.c | |
| parent | 909b6d2653aa8b157a60b0f11fb5ca1eb37ea64e (diff) | |
| download | rockbox-cd88582478749aa09000361b9f4e48e73b5b307e.zip rockbox-cd88582478749aa09000361b9f4e48e73b5b307e.tar.gz rockbox-cd88582478749aa09000361b9f4e48e73b5b307e.tar.bz2 rockbox-cd88582478749aa09000361b9f4e48e73b5b307e.tar.xz | |
64-bit sim fixes
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@9316 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'apps/plugins/doom/p_saveg.c')
| -rw-r--r-- | apps/plugins/doom/p_saveg.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/plugins/doom/p_saveg.c b/apps/plugins/doom/p_saveg.c index bf1a2ed..7d012c7 100644 --- a/apps/plugins/doom/p_saveg.c +++ b/apps/plugins/doom/p_saveg.c @@ -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 // |