From 2ad7d3b71555eca328d0380e915cf52a18a4f95c Mon Sep 17 00:00:00 2001 From: ludwig Date: Sat, 5 Nov 2005 19:06:10 +0000 Subject: - put ALIGN macro into q_shared.h - yet another alignment fix for botlib git-svn-id: svn://svn.icculus.org/quake3/trunk@282 edf5b092-35ff-0310-97b2-ce42778d08ea --- code/botlib/be_aas_route.c | 4 ++-- code/botlib/be_ai_chat.c | 17 ++++------------- 2 files changed, 6 insertions(+), 15 deletions(-) (limited to 'code/botlib') diff --git a/code/botlib/be_aas_route.c b/code/botlib/be_aas_route.c index 56b1613..de8cc03 100644 --- a/code/botlib/be_aas_route.c +++ b/code/botlib/be_aas_route.c @@ -521,7 +521,7 @@ void AAS_CalculateAreaTravelTimes(void) // size += settings->numreachableareas * sizeof(unsigned short *); // - size += settings->numreachableareas * revreach->numlinks * sizeof(unsigned short); + size += settings->numreachableareas * ALIGN(revreach->numlinks) * sizeof(unsigned short); } //end for //allocate memory for the area travel times ptr = (char *) GetClearedMemory(size); @@ -541,7 +541,7 @@ void AAS_CalculateAreaTravelTimes(void) for (l = 0; l < settings->numreachableareas; l++) { aasworld.areatraveltimes[i][l] = (unsigned short *) ptr; - ptr += revreach->numlinks * sizeof(unsigned short); + ptr += ALIGN(revreach->numlinks) * sizeof(unsigned short); //reachability link reach = &aasworld.reachability[settings->firstreachablearea + l]; // diff --git a/code/botlib/be_ai_chat.c b/code/botlib/be_ai_chat.c index 85050e9..c71df9a 100644 --- a/code/botlib/be_ai_chat.c +++ b/code/botlib/be_ai_chat.c @@ -20,15 +20,6 @@ Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA 02110-1301 USA =========================================================================== */ -#if 1 -#define ALIGN(x) \ - do { \ - x = (x+sizeof(void*)-1) & ~(sizeof(void*)-1L); \ - } while(0) -#else -#define ALIGN(x) -#endif - /***************************************************************************** * name: be_ai_chat.c * @@ -699,7 +690,7 @@ bot_synonymlist_t *BotLoadSynonyms(char *filename) return NULL; } //end if len = strlen(token.string) + 1; - ALIGN(len); + len = ALIGN(len); size += sizeof(bot_synonym_t) + len; if (pass) { @@ -998,7 +989,7 @@ bot_randomlist_t *BotLoadRandomStrings(char *filename) return NULL; } //end if len = strlen(token.string) + 1; - ALIGN(len); + len = ALIGN(len); size += sizeof(bot_randomlist_t) + len; if (pass) { @@ -1029,7 +1020,7 @@ bot_randomlist_t *BotLoadRandomStrings(char *filename) return NULL; } //end if len = strlen(chatmessagestring) + 1; - ALIGN(len); + len = ALIGN(len); size += sizeof(bot_randomstring_t) + len; if (pass) { @@ -2132,7 +2123,7 @@ bot_chat_t *BotLoadInitialChat(char *chatfile, char *chatname) return NULL; } //end if len = strlen(chatmessagestring) + 1; - ALIGN(len); + len = ALIGN(len); if (pass) { chatmessage = (bot_chatmessage_t *) ptr; -- cgit v1.2.3