Use longs in shmem structs (Might prevent alignment problems)

git-svn-id: svn://katsu.triplehelix.org/dgamelaunch/trunk@541 db0b04b0-f4d1-0310-9a6d-de3e77497b0e
This commit is contained in:
Pasi Kallinen 2010-05-02 08:15:01 +00:00
parent afa0b07631
commit ffc63ae838
1 changed files with 5 additions and 5 deletions

View File

@ -86,14 +86,14 @@ struct dg_shm
#ifdef USE_SHMEM
sem_t dg_sem;
#endif
int max_n_games;
int cur_n_games;
long max_n_games;
long cur_n_games;
};
struct dg_shm_game
{
int in_use;
int nwatchers;
long in_use;
long nwatchers;
char ttyrec_fn[150];
};