typos, patch by Ansgar Burchardt <ansgar@43-1.org>

This commit is contained in:
Thilo Schulz 2011-02-04 17:18:40 +00:00
parent 31d99e2c4e
commit 8869e989e4
4 changed files with 6 additions and 6 deletions

View file

@ -216,7 +216,7 @@ void AAS_ContinueInit(float time)
//save the AAS file //save the AAS file
if (AAS_WriteAASFile(aasworld.filename)) if (AAS_WriteAASFile(aasworld.filename))
{ {
botimport.Print(PRT_MESSAGE, "%s written succesfully\n", aasworld.filename); botimport.Print(PRT_MESSAGE, "%s written successfully\n", aasworld.filename);
} //end if } //end if
else else
{ {

View file

@ -2198,7 +2198,7 @@ bot_chat_t *BotLoadInitialChat(char *chatfile, char *chatname)
#ifdef DEBUG #ifdef DEBUG
botimport.Print(PRT_MESSAGE, "initial chats loaded in %d msec\n", Sys_MilliSeconds() - starttime); botimport.Print(PRT_MESSAGE, "initial chats loaded in %d msec\n", Sys_MilliSeconds() - starttime);
#endif //DEBUG #endif //DEBUG
//character was read succesfully //character was read successfully
return chat; return chat;
} //end of the function BotLoadInitialChat } //end of the function BotLoadInitialChat
//=========================================================================== //===========================================================================

View file

@ -1362,7 +1362,7 @@ define_t *PC_DefineFromString(char *string)
#endif //DEFINEHASHING #endif //DEFINEHASHING
// //
FreeScript(script); FreeScript(script);
//if the define was created succesfully //if the define was created successfully
if (res > 0) return def; if (res > 0) return def;
//free the define is created //free the define is created
if (src.defines) PC_FreeDefine(def); if (src.defines) PC_FreeDefine(def);

View file

@ -421,7 +421,7 @@ int PS_ReadEscapeCharacter(script_t *script, char *ch)
script->script_p++; script->script_p++;
//store the escape character //store the escape character
*ch = c; *ch = c;
//succesfully read escape character //successfully read escape character
return 1; return 1;
} //end of the function PS_ReadEscapeCharacter } //end of the function PS_ReadEscapeCharacter
//============================================================================ //============================================================================
@ -431,7 +431,7 @@ int PS_ReadEscapeCharacter(script_t *script, char *ch)
// //
// Parameter: script : script to read from // Parameter: script : script to read from
// token : buffer to store the string // token : buffer to store the string
// Returns: qtrue when a string was read succesfully // Returns: qtrue when a string was read successfully
// Changes Globals: - // Changes Globals: -
//============================================================================ //============================================================================
int PS_ReadString(script_t *script, token_t *token, int quote) int PS_ReadString(script_t *script, token_t *token, int quote)
@ -912,7 +912,7 @@ int PS_ReadToken(script_t *script, token_t *token)
} //end if } //end if
//copy the token into the script structure //copy the token into the script structure
Com_Memcpy(&script->token, token, sizeof(token_t)); Com_Memcpy(&script->token, token, sizeof(token_t));
//succesfully read a token //successfully read a token
return 1; return 1;
} //end of the function PS_ReadToken } //end of the function PS_ReadToken
//============================================================================ //============================================================================